| 668 | } |
| 669 | |
| 670 | static void AddFunctionToJit(LlvmCodeGen* codegen, llvm::Function* fn, |
| 671 | CodegenFnPtrBase* fn_ptr) { |
| 672 | // Bypass Impala-specific logic in AddFunctionToJit() that assumes Impala's struct |
| 673 | // types are available in the module. |
| 674 | return codegen->AddFunctionToJitInternal(fn, fn_ptr); |
| 675 | } |
| 676 | |
| 677 | static Status FinalizeModule(LlvmCodeGen* codegen) { return codegen->FinalizeModule(); } |
| 678 |
nothing calls this directly
no test coverage detected