diff options
Diffstat (limited to 'src/compiler/codegen/RallocUtil.cc')
| -rw-r--r-- | src/compiler/codegen/RallocUtil.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/codegen/RallocUtil.cc b/src/compiler/codegen/RallocUtil.cc index affb545aea..2088cdc360 100644 --- a/src/compiler/codegen/RallocUtil.cc +++ b/src/compiler/codegen/RallocUtil.cc @@ -1244,8 +1244,8 @@ extern void oatDoPromotion(CompilationUnit* cUnit) /* Returns sp-relative offset in bytes for a VReg */ extern int oatVRegOffset(CompilationUnit* cUnit, int vReg) { - return Frame::GetVRegOffset(cUnit->code_item, cUnit->coreSpillMask, - cUnit->fpSpillMask, cUnit->frameSize, vReg); + return StackVisitor::GetVRegOffset(cUnit->code_item, cUnit->coreSpillMask, + cUnit->fpSpillMask, cUnit->frameSize, vReg); } /* Returns sp-relative offset in bytes for a SReg */ |