hotspot/src/share/vm/runtime/frame.cpp
changeset 9632 cd86c748c12b
parent 9630 d6419e4395e3
child 9636 363ca5579aff
--- a/hotspot/src/share/vm/runtime/frame.cpp	Fri May 06 19:34:55 2011 -0700
+++ b/hotspot/src/share/vm/runtime/frame.cpp	Mon May 09 19:45:52 2011 -0700
@@ -1423,7 +1423,7 @@
 }
 
 
-bool FrameValues::validate() {
+void FrameValues::validate() {
   _values.sort(compare);
   bool error = false;
   FrameValue prev;
@@ -1446,7 +1446,7 @@
       prev = fv;
     }
   }
-  return error;
+  assert(!error, "invalid layout");
 }