diff src/cpu/x86/vm/frame_x86.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 6fe49fc03fae
children
line wrap: on
line diff
--- a/src/cpu/x86/vm/frame_x86.cpp	Wed May 27 13:43:27 2015 +0200
+++ b/src/cpu/x86/vm/frame_x86.cpp	Thu May 28 15:36:48 2015 +0200
@@ -460,11 +460,11 @@
   // This is the sp before any possible extension (adapter/locals).
   intptr_t* unextended_sp = interpreter_frame_sender_sp();
 
-#if defined(COMPILER2) || defined(GRAAL)
+#if defined(COMPILER2) || defined(JVMCI)
   if (map->update_map()) {
     update_map_with_saved_link(map, (intptr_t**) addr_at(link_offset));
   }
-#endif // COMPILER2 || GRAAL
+#endif // COMPILER2 || JVMCI
 
   return frame(sender_sp, unextended_sp, link(), sender_pc());
 }