* @return @c True if @a t is a string array -- an array of char elements, * @c false otherwise. */
| 102 | * @c false otherwise. |
| 103 | */ |
| 104 | bool isStringArrayType(const llvm::Type* t) |
| 105 | { |
| 106 | auto* at = dyn_cast_or_null<ArrayType>(t); |
| 107 | return at ? isCharType(at->getElementType()) : false; |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * @return @c True if @a t is a pointer to string array type |
no test coverage detected