| 86 | } |
| 87 | |
| 88 | static llvm::StructType * buildColumnDataStruct(llvm::IRBuilderBase & b) |
| 89 | { |
| 90 | auto * char_ptr_type = b.getInt8Ty()->getPointerTo(); |
| 91 | return llvm::StructType::get(char_ptr_type, char_ptr_type, char_ptr_type); |
| 92 | } |
| 93 | |
| 94 | static llvm::StructType * buildStringRefType(llvm::IRBuilderBase &b) |
| 95 | { |
no test coverage detected