diff options
Diffstat (limited to 'src/compiler/codegen/MethodBitcode.cc')
| -rw-r--r-- | src/compiler/codegen/MethodBitcode.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/codegen/MethodBitcode.cc b/src/compiler/codegen/MethodBitcode.cc index fcf2151a74..a034b6bbaa 100644 --- a/src/compiler/codegen/MethodBitcode.cc +++ b/src/compiler/codegen/MethodBitcode.cc @@ -340,7 +340,7 @@ void convertThrow(CompilationUnit* cUnit, RegLocation rlSrc) { llvm::Value* src = getLLVMValue(cUnit, rlSrc.origSReg); llvm::Function* func = cUnit->intrinsic_helper->GetIntrinsicFunction( - greenland::IntrinsicHelper::ThrowException); + greenland::IntrinsicHelper::HLThrowException); cUnit->irb->CreateCall(func, src); } @@ -3067,7 +3067,7 @@ bool methodBitcodeBlockCodeGen(CompilationUnit* cUnit, llvm::BasicBlock* bb) case greenland::IntrinsicHelper::GetException: cvtMoveException(cUnit, callInst); break; - case greenland::IntrinsicHelper::ThrowException: + case greenland::IntrinsicHelper::HLThrowException: cvtThrow(cUnit, callInst); break; case greenland::IntrinsicHelper::MonitorEnter: |