diff src/share/vm/code/scopeDesc.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 c1f116cd4b67
children c28cb37b2e1d
line wrap: on
line diff
--- a/src/share/vm/code/scopeDesc.cpp	Wed May 27 13:43:27 2015 +0200
+++ b/src/share/vm/code/scopeDesc.cpp	Thu May 28 15:36:48 2015 +0200
@@ -226,8 +226,8 @@
     }
   }
 
-#if defined(COMPILER2) || defined(GRAAL)
-  if (NOT_GRAAL(DoEscapeAnalysis &&) is_top() && _objects != NULL) {
+#if defined(COMPILER2) || defined(JVMCI)
+  if (NOT_JVMCI(DoEscapeAnalysis &&) is_top() && _objects != NULL) {
     tty->print_cr("Objects");
     for (int i = 0; i < _objects->length(); i++) {
       ObjectValue* sv = _objects->at(i)->as_ObjectValue();
@@ -237,7 +237,7 @@
       tty->cr();
     }
   }
-#endif // COMPILER2 || GRAAL
+#endif // COMPILER2 || JVMCI
 }
 
 #endif