comparison src/share/vm/classfile/classFileParser.cpp @ 1490:f03d0a26bf83

6888954: argument formatting for assert() and friends Reviewed-by: kvn, twisti, apetrusenko, never, dcubed
author jcoomes
date Thu, 22 Apr 2010 13:23:15 -0700
parents b9d85fcdf743
children df736661d0c8
comparison
equal deleted inserted replaced
1489:cff162798819 1490:f03d0a26bf83
332 symbolOop sym = cp->symbol_at(string_index); 332 symbolOop sym = cp->symbol_at(string_index);
333 cp->unresolved_string_at_put(index, sym); 333 cp->unresolved_string_at_put(index, sym);
334 } 334 }
335 break; 335 break;
336 default: 336 default:
337 fatal1("bad constant pool tag value %u", cp->tag_at(index).value()); 337 fatal(err_msg("bad constant pool tag value %u",
338 cp->tag_at(index).value()));
338 ShouldNotReachHere(); 339 ShouldNotReachHere();
339 break; 340 break;
340 } // end of switch 341 } // end of switch
341 } // end of for 342 } // end of for
342 343