summaryrefslogtreecommitdiff
path: root/src/compiler/codegen/MethodBitcode.cc
diff options
context:
space:
mode:
author TDYa127 <tdy@google.com> 2012-07-29 20:09:52 -0700
committer Shih-wei Liao <sliao@google.com> 2012-09-15 04:20:58 -0700
commitf71bf5ad4e1872e4dfc71de65641ed518e2b38da (patch)
tree8ea7bd1e5213addd86dce62e08624633a288f21d /src/compiler/codegen/MethodBitcode.cc
parent5a26d44dc8e6fe59a3619ee5951a54bc53d7c9f1 (diff)
Implement remaining intrinsics.
Change-Id: I75e769ae51acfdb94734a9d91fada9b49dcf2e88
Diffstat (limited to 'src/compiler/codegen/MethodBitcode.cc')
-rw-r--r--src/compiler/codegen/MethodBitcode.cc4
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: