hotspot/src/share/vm/runtime/vframe.cpp
changeset 2880 c2974244a496
parent 670 ddf3e9583f2f
child 3171 aa289b22b577
--- a/hotspot/src/share/vm/runtime/vframe.cpp	Wed Jun 03 18:15:25 2009 -0700
+++ b/hotspot/src/share/vm/runtime/vframe.cpp	Fri Jun 05 10:25:39 2009 -0700
@@ -559,7 +559,8 @@
   }
   // Check frame size and print warning if it looks suspiciously large
   if (fr().sp() != NULL) {
-    uint size = fr().frame_size();
+    RegisterMap map = *register_map();
+    uint size = fr().frame_size(&map);
 #ifdef _LP64
     if (size > 8*K) warning("SUSPICIOUSLY LARGE FRAME (%d)", size);
 #else