| 115 | } |
| 116 | |
| 117 | static void AddFunctionToJit(LlvmCodeGen* codegen, llvm::Function* fn, |
| 118 | CodegenFnPtrBase* fn_ptr) { |
| 119 | // Bypass Impala-specific logic in AddFunctionToJit() that assumes Impala's struct |
| 120 | // types are available in the module. |
| 121 | return codegen->AddFunctionToJitInternal(fn, fn_ptr); |
| 122 | } |
| 123 | |
| 124 | static bool VerifyFunction(LlvmCodeGen* codegen, llvm::Function* fn) { |
| 125 | return codegen->VerifyFunction(fn); |
nothing calls this directly
no test coverage detected