diff src/share/vm/classfile/systemDictionary.hpp @ 22298:c28cb37b2e1d

Rename JVMCI to INCLUDE_JVMCI.
author twisti
date Wed, 22 Jul 2015 08:56:03 -0700
parents 0e095e2c24e2
children 7b4a47fcc4c0
line wrap: on
line diff
--- a/src/share/vm/classfile/systemDictionary.hpp	Wed Jul 22 15:50:08 2015 +0200
+++ b/src/share/vm/classfile/systemDictionary.hpp	Wed Jul 22 08:56:03 2015 -0700
@@ -268,7 +268,7 @@
 
     WKID_LIMIT,
 
-#ifdef JVMCI
+#if INCLUDE_JVMCI
     FIRST_JVMCI_WKID = WK_KLASS_ENUM_NAME(Debug_klass),
     LAST_JVMCI_WKID  = WK_KLASS_ENUM_NAME(AbstractValue_klass),
 #endif
@@ -286,7 +286,7 @@
     Opt,                        // preload tried; NULL if not present
     Opt_Only_JDK14NewRef,       // preload tried; use only with NewReflection
     Opt_Only_JDK15,             // preload tried; use only with JDK1.5+
-#ifdef JVMCI
+#if INCLUDE_JVMCI
     Jvmci,                      // preload tried; error if not present, use only with JVMCI
 #endif
     OPTION_LIMIT,
@@ -478,7 +478,7 @@
     // despite the optional loading, if you use this it must be present:
     return check_klass(k);
   }
-#ifdef JVMCI
+#if INCLUDE_JVMCI
   static Klass* check_klass_Jvmci(Klass* k)      { return k; }
 #endif
 
@@ -546,7 +546,7 @@
   // Returns default system loader
   static oop java_system_loader();
 
-#ifdef JVMCI
+#if INCLUDE_JVMCI
   // Returns the JVMCI loader. This will be NULL if !UseJVMCIClassLoader
   // in which case it's equivalent to the boot loader
   static oop jvmci_loader();
@@ -784,7 +784,7 @@
   static Klass* _box_klasses[T_VOID+1];
 
   static oop  _java_system_loader;
-#ifdef JVMCI
+#if INCLUDE_JVMCI
   static oop  _jvmci_loader;
 #endif