< prev index next >

src/hotspot/cpu/zero/cppInterpreterGenerator_zero.cpp

Print this page

        

@@ -63,11 +63,11 @@
 
   return generate_entry((address) CppInterpreter::accessor_entry);
 }
 
 address CppInterpreterGenerator::generate_Reference_get_entry(void) {
-#if INCLUDE_ALL_GCS
+#if INCLUDE_G1GC
   if (UseG1GC) {
     // We need to generate have a routine that generates code to:
     //   * load the value in the referent field
     //   * passes that value to the pre-barrier.
     //

@@ -75,11 +75,11 @@
     // referent in an SATB buffer if marking is active.
     // This will cause concurrent marking to mark the referent
     // field as live.
     Unimplemented();
   }
-#endif // INCLUDE_ALL_GCS
+#endif // INCLUDE_G1GC
 
   // If G1 is not enabled then attempt to go through the normal entry point
   // Reference.get could be instrumented by jvmti
   return NULL;
 }
< prev index next >