| 1814 | } |
| 1815 | |
| 1816 | llvm::Value* LlvmCodeGen::CodegenCallFunction(LlvmBuilder* builder, |
| 1817 | IRFunction::Type ir_type, llvm::ArrayRef<llvm::Value*> args, const char* name) { |
| 1818 | llvm::Function* fn = GetFunction(ir_type, false); |
| 1819 | DCHECK(fn != nullptr); |
| 1820 | return builder->CreateCall(fn, args, name); |
| 1821 | } |
| 1822 | |
| 1823 | void LlvmCodeGen::ClearHashFns() { |
| 1824 | hash_fns_.clear(); |
no test coverage detected