| 85 | } |
| 86 | |
| 87 | static void CheckResult(LlvmCodeGen* codegen, bool is_double = false) { |
| 88 | llvm::ExecutionEngine* cached_execution_engine = codegen->execution_engine(); |
| 89 | ASSERT_TRUE(cached_execution_engine != nullptr); |
| 90 | CheckResult(cached_execution_engine, is_double); |
| 91 | } |
| 92 | |
| 93 | static void CheckResult(llvm::ExecutionEngine* engine, bool is_double = false) { |
| 94 | void* test_fn; |
nothing calls this directly
no test coverage detected