diff options
Diffstat (limited to 'src/compiler/codegen/MethodCodegenDriver.cc')
-rw-r--r-- | src/compiler/codegen/MethodCodegenDriver.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/codegen/MethodCodegenDriver.cc b/src/compiler/codegen/MethodCodegenDriver.cc index 7227487db9..3a80d1063c 100644 --- a/src/compiler/codegen/MethodCodegenDriver.cc +++ b/src/compiler/codegen/MethodCodegenDriver.cc @@ -870,9 +870,9 @@ bool methodBlockCodeGen(CompilationUnit* cUnit, BasicBlock* bb) LIR* headLIR = NULL; - /* If this is a catch block, mark the beginning as a safepoint */ + /* If this is a catch block, export the start address */ if (bb->catchEntry) { - headLIR = newLIR0(cUnit, kPseudoSafepointPC); + headLIR = newLIR0(cUnit, kPseudoExportedPC); } /* Free temp registers and reset redundant store tracking */ |