diff options
| author | 2012-08-30 16:17:40 -0700 | |
|---|---|---|
| committer | 2012-08-31 10:49:06 -0700 | |
| commit | 9a4f003f9a6da8e4c6ee279bd2a13aac37648183 (patch) | |
| tree | ce78afe7c842c8ff99d52c0a09bfe758d67d037f /src/compiler/codegen/GenCommon.cc | |
| parent | cfb21d92796087963c092b69110a2e7ff7a03a55 (diff) | |
Remove the THROW_VERIFICATION_ERROR op and supporting code.
Change-Id: Idc40a2c379048c7e3d74f50b2bd765a507a417ce
Diffstat (limited to 'src/compiler/codegen/GenCommon.cc')
| -rw-r--r-- | src/compiler/codegen/GenCommon.cc | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/compiler/codegen/GenCommon.cc b/src/compiler/codegen/GenCommon.cc index 6cb701f829..8c431f5d90 100644 --- a/src/compiler/codegen/GenCommon.cc +++ b/src/compiler/codegen/GenCommon.cc @@ -829,13 +829,6 @@ void genShowTarget(CompilationUnit* cUnit) #endif } -void genThrowVerificationError(CompilationUnit* cUnit, int info1, int info2) -{ - callRuntimeHelperImmImm(cUnit, - ENTRYPOINT_OFFSET(pThrowVerificationErrorFromCode), - info1, info2); -} - void handleSuspendLaunchpads(CompilationUnit *cUnit) { LIR** suspendLabel = (LIR **)cUnit->suspendLaunchpads.elemList; @@ -929,12 +922,6 @@ void handleThrowLaunchpads(CompilationUnit *cUnit) case kThrowDivZero: funcOffset = ENTRYPOINT_OFFSET(pThrowDivZeroFromCode); break; - case kThrowVerificationError: - loadConstant(cUnit, rARG0, v1); - loadConstant(cUnit, rARG1, v2); - funcOffset = - ENTRYPOINT_OFFSET(pThrowVerificationErrorFromCode); - break; case kThrowNoSuchMethod: opRegCopy(cUnit, rARG0, v1); funcOffset = |