# HG changeset patch # User hseigel # Date 1366808404 14400 # Node ID cc70cbbd422edb11ac72523440154101c6acdd4f # Parent 1ea6a35dcbe5537e2ee732a6e7cc4216ece821e1 8012695: Assertion message displays %u and %s text instead of actual values Summary: USe err_msg() to create a proper assertion message. Reviewed-by: twisti, coleenp, iklam diff -r 1ea6a35dcbe5 -r cc70cbbd422e src/share/vm/classfile/classFileParser.hpp --- a/src/share/vm/classfile/classFileParser.hpp Tue Apr 23 12:32:17 2013 -0400 +++ b/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); } }