Implement remaining intrinsics.
Change-Id: I75e769ae51acfdb94734a9d91fada9b49dcf2e88
diff --git a/src/compiler/codegen/MethodBitcode.cc b/src/compiler/codegen/MethodBitcode.cc
index fcf2151..a034b6b 100644
--- a/src/compiler/codegen/MethodBitcode.cc
+++ b/src/compiler/codegen/MethodBitcode.cc
@@ -340,7 +340,7 @@
{
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 @@
case greenland::IntrinsicHelper::GetException:
cvtMoveException(cUnit, callInst);
break;
- case greenland::IntrinsicHelper::ThrowException:
+ case greenland::IntrinsicHelper::HLThrowException:
cvtThrow(cUnit, callInst);
break;
case greenland::IntrinsicHelper::MonitorEnter: