src/share/vm/classfile/stackMapTableFormat.hpp

Print this page

        

*** 20,29 **** --- 20,34 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_CLASSFILE_STACKMAPTABLEFORMAT_HPP + #define SHARE_VM_CLASSFILE_STACKMAPTABLEFORMAT_HPP + + #include "classfile/verificationType.hpp" + // These classes represent the stack-map substructures described in the JVMS // (hence the non-conforming naming scheme). // These classes work with the types in their compressed form in-place (as they // would appear in the classfile). No virtual methods or fields allowed.
*** 912,916 **** --- 917,923 ---- } void set_number_of_entries(u2 num) { Bytes::put_Java_u2(number_of_entries_addr(), num); } }; + + #endif // SHARE_VM_CLASSFILE_STACKMAPTABLEFORMAT_HPP