diff options
Diffstat (limited to 'src/compiler/codegen/RallocUtil.cc')
| -rw-r--r-- | src/compiler/codegen/RallocUtil.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/compiler/codegen/RallocUtil.cc b/src/compiler/codegen/RallocUtil.cc index 30b52804e5..3b222f6f76 100644 --- a/src/compiler/codegen/RallocUtil.cc +++ b/src/compiler/codegen/RallocUtil.cc @@ -783,6 +783,12 @@ extern void oatMarkTemp(CompilationUnit* cUnit, int reg) info->isTemp = true; } +extern void oatUnmarkTemp(CompilationUnit* cUnit, int reg) +{ + RegisterInfo* info = getRegInfo(cUnit, reg); + info->isTemp = false; +} + extern void oatMarkPair(CompilationUnit* cUnit, int lowReg, int highReg) { RegisterInfo* infoLo = getRegInfo(cUnit, lowReg); |