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

src/share/vm/classfile/verificationType.hpp

Print this page
rev 2099 : 7020118: Alter frame assignability to allow for exception handler coverage of invokespecial <init>
Summary: Add special rule to allow assignment of frames with uninit flags set.
Reviewed-by:

*** 126,135 **** --- 126,136 ---- VerificationType() { *this = bogus_type(); } // Create verification types static VerificationType bogus_type() { return VerificationType(Bogus); } + static VerificationType top_type() { return bogus_type(); } // alias static VerificationType null_type() { return VerificationType(Null); } static VerificationType integer_type() { return VerificationType(Integer); } static VerificationType float_type() { return VerificationType(Float); } static VerificationType long_type() { return VerificationType(Long); } static VerificationType long2_type() { return VerificationType(Long_2nd); }
src/share/vm/classfile/verificationType.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File