hotspot/src/share/vm/classfile/classFileParser.hpp
changeset 17073 99baa410e207
parent 16692 b6d3c26b2192
child 19326 14cb6cf26a96
--- a/hotspot/src/share/vm/classfile/classFileParser.hpp	Tue Apr 23 12:32:17 2013 -0400
+++ b/hotspot/src/share/vm/classfile/classFileParser.hpp	Wed Apr 24 09:00:04 2013 -0400
@@ -304,7 +304,19 @@
 
   inline void assert_property(bool b, const char* msg, TRAPS) {
 #ifdef ASSERT
-    if (!b) { fatal(msg); }
+    if (!b) {
+      ResourceMark rm(THREAD);
+      fatal(err_msg(msg, _class_name->as_C_string()));
+    }
+#endif
+  }
+
+  inline void assert_property(bool b, const char* msg, int index, TRAPS) {
+#ifdef ASSERT
+    if (!b) {
+      ResourceMark rm(THREAD);
+      fatal(err_msg(msg, index, _class_name->as_C_string()));
+    }
 #endif
   }
 
@@ -312,7 +324,7 @@
     if (_need_verify) {
       guarantee_property(property, msg, index, CHECK);
     } else {
-      assert_property(property, msg, CHECK);
+      assert_property(property, msg, index, CHECK);
     }
   }