| 605 | } |
| 606 | |
| 607 | arrow::Status Engine::AddGlobalMappings() { |
| 608 | ARROW_RETURN_NOT_OK(ExportedFuncsRegistry::AddMappings(this)); |
| 609 | ExternalCFunctions c_funcs(function_registry_); |
| 610 | return c_funcs.AddMappings(this); |
| 611 | } |
| 612 | |
| 613 | const std::string& Engine::ir() { |
| 614 | DCHECK(!module_ir_.empty()) << "dump_ir in Configuration must be set for dumping IR"; |
nothing calls this directly
no test coverage detected