src/share/vm/classfile/verifier.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/classfile/verifier.hpp

src/share/vm/classfile/verifier.hpp

Print this page

        

*** 434,444 **** case T_ARRAY: { Symbol* name = sig_type->as_symbol(CHECK_0); // Create another symbol to save as signature stream unreferences this symbol. Symbol* name_copy = create_temporary_symbol(name); ! assert(name_copy == name, "symbols don't match"); *inference_type = VerificationType::reference_type(name_copy); return 1; } case T_LONG: --- 434,444 ---- case T_ARRAY: { Symbol* name = sig_type->as_symbol(CHECK_0); // Create another symbol to save as signature stream unreferences this symbol. Symbol* name_copy = create_temporary_symbol(name); ! assert(name_copy->equals(name), "symbols don't match"); *inference_type = VerificationType::reference_type(name_copy); return 1; } case T_LONG:
src/share/vm/classfile/verifier.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File