diff options
| author | 2012-09-21 21:04:28 -0700 | |
|---|---|---|
| committer | 2012-09-21 21:04:28 -0700 | |
| commit | a2c0ba0fed90db9ad8836b87f7201b8f90cee1ea (patch) | |
| tree | 2ba0727e1312aa2748b7b8be0f610453f3840676 /src/compiler/codegen/MethodCodegenDriver.cc | |
| parent | 000d724207b4ff32fcbc9744da76d2f594675eed (diff) | |
| parent | 66f19258f9728d4ffe026074d8fd429d639802fa (diff) | |
Merge "Change dex cache to be java object instead of array, add pointer to dex file in dex cache." into dalvik-dev
Diffstat (limited to 'src/compiler/codegen/MethodCodegenDriver.cc')
| -rw-r--r-- | src/compiler/codegen/MethodCodegenDriver.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/codegen/MethodCodegenDriver.cc b/src/compiler/codegen/MethodCodegenDriver.cc index 7d612b04a1..8269f8bb85 100644 --- a/src/compiler/codegen/MethodCodegenDriver.cc +++ b/src/compiler/codegen/MethodCodegenDriver.cc @@ -129,7 +129,7 @@ void genInvoke(CompilationUnit* cUnit, CallInfo* info) callInst = opReg(cUnit, kOpBlx, rINVOKE_TGT); #else if (fastPath && info->type != kInterface) { - callInst = opMem(cUnit, kOpBlx, rARG0, Method::GetCodeOffset().Int32Value()); + callInst = opMem(cUnit, kOpBlx, rARG0, AbstractMethod::GetCodeOffset().Int32Value()); } else { int trampoline = 0; switch (info->type) { |