* @return @c True if @a t is a pointer to string array type * (see @c isStringArrayType), @c false otherwise. */
| 112 | * (see @c isStringArrayType), @c false otherwise. |
| 113 | */ |
| 114 | bool isStringArrayPointeType(const llvm::Type* t) |
| 115 | { |
| 116 | auto* pt = dyn_cast_or_null<PointerType>(t); |
| 117 | return pt ? isStringArrayType(pt->getElementType()) : false; |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * This is the same as @c stringToLlvmType(), but default type is returned |
no test coverage detected