diff src/share/vm/interpreter/interpreter.cpp @ 21559:be896a1983c0

recast all Graal native code as JVMCI code (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Thu, 28 May 2015 15:36:48 +0200
parents 52b4284cb496
children
line wrap: on
line diff
--- a/src/share/vm/interpreter/interpreter.cpp	Wed May 27 13:43:27 2015 +0200
+++ b/src/share/vm/interpreter/interpreter.cpp	Thu May 28 15:36:48 2015 +0200
@@ -409,7 +409,7 @@
 address AbstractInterpreter::deopt_reexecute_entry(Method* method, address bcp) {
   assert(method->contains(bcp), "just checkin'");
   Bytecodes::Code code   = Bytecodes::java_code_at(method, bcp);
-#if defined(COMPILER1) || defined(GRAAL)
+#if defined(COMPILER1) || defined(JVMCI)
   if(code == Bytecodes::_athrow ) {
     return Interpreter::rethrow_exception_entry();
   }