hotspot/src/share/vm/runtime/frame.cpp
changeset 22876 57aa8995d43b
parent 22551 9bf46d16dcc6
parent 22838 82c7497fbad4
child 22924 5da64eb25f2a
child 22905 4b1549d69106
--- a/hotspot/src/share/vm/runtime/frame.cpp	Thu Feb 13 17:57:27 2014 +0100
+++ b/hotspot/src/share/vm/runtime/frame.cpp	Wed Feb 19 12:08:49 2014 -0800
@@ -933,7 +933,7 @@
     cld_f->do_cld(m->method_holder()->class_loader_data());
   }
 
-#if !defined(PPC) || defined(ZERO)
+#if !defined(PPC32) || defined(ZERO)
   if (m->is_native()) {
 #ifdef CC_INTERP
     interpreterState istate = get_interpreterState();
@@ -942,11 +942,11 @@
     f->do_oop((oop*)( fp() + interpreter_frame_oop_temp_offset ));
 #endif /* CC_INTERP */
   }
-#else // PPC
+#else // PPC32
   if (m->is_native() && m->is_static()) {
     f->do_oop(interpreter_frame_mirror_addr());
   }
-#endif // PPC
+#endif // PPC32
 
   int max_locals = m->is_native() ? m->size_of_parameters() : m->max_locals();