diff src/cpu/x86/vm/frame_x86.cpp @ 11422:774e1c2f8741

Include Graal in some ifdefs related to rbp allocation
author Gilles Duboscq <duboscq@ssw.jku.at>
date Mon, 26 Aug 2013 18:04:53 +0200
parents 6b0fd0964b87
children cefad50507d8
line wrap: on
line diff
--- a/src/cpu/x86/vm/frame_x86.cpp	Mon Aug 26 18:03:09 2013 +0200
+++ b/src/cpu/x86/vm/frame_x86.cpp	Mon Aug 26 18:04:53 2013 +0200
@@ -461,11 +461,11 @@
   // This is the sp before any possible extension (adapter/locals).
   intptr_t* unextended_sp = interpreter_frame_sender_sp();
 
-#ifdef COMPILER2
+#if defined(COMPILER2) || defined(GRAAL)
   if (map->update_map()) {
     update_map_with_saved_link(map, (intptr_t**) addr_at(link_offset));
   }
-#endif // COMPILER2
+#endif // COMPILER2 || GRAAL
 
   return frame(sender_sp, unextended_sp, link(), sender_pc());
 }