changeset 12382:ce5e6f9075b6

Replace some wrong GRAAL_ONLY with GRAALVM_ONLY
author Gilles Duboscq <duboscq@ssw.jku.at>
date Mon, 14 Oct 2013 13:49:46 +0200
parents 20150eaa1dc7
children 1d2d7924033a bfcae72b61a0
files src/share/vm/compiler/oopMap.cpp
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/compiler/oopMap.cpp	Mon Oct 14 13:07:34 2013 +0200
+++ b/src/share/vm/compiler/oopMap.cpp	Mon Oct 14 13:49:46 2013 +0200
@@ -319,7 +319,7 @@
 static void add_derived_oop(oop* base, oop* derived) {
 #ifndef TIERED
   COMPILER1_PRESENT(ShouldNotReachHere();)
-  GRAAL_ONLY(ShouldNotReachHere();)
+  GRAALVM_ONLY(ShouldNotReachHere();)
 #endif // TIERED
 #ifdef COMPILER2
   DerivedPointerTable::add(derived, base);
@@ -381,7 +381,7 @@
     if (!oms.is_done()) {
 #ifndef TIERED
       COMPILER1_PRESENT(ShouldNotReachHere();)
-      GRAAL_ONLY(ShouldNotReachHere();)
+      GRAALVM_ONLY(ShouldNotReachHere();)
 #endif // !TIERED
       // Protect the operation on the derived pointers.  This
       // protects the addition of derived pointers to the shared
@@ -523,7 +523,7 @@
 bool OopMap::has_derived_pointer() const {
 #ifndef TIERED
   COMPILER1_PRESENT(return false);
-  GRAAL_ONLY(return false);
+  GRAALVM_ONLY(return false);
 #endif // !TIERED
 #ifdef COMPILER2
   OopMapStream oms((OopMap*)this,OopMapValue::derived_oop_value);