< prev index next >

src/hotspot/share/classfile/classFileParser.cpp

Print this page

        

@@ -117,10 +117,12 @@
 
 #define JAVA_11_VERSION                   55
 
 #define JAVA_12_VERSION                   56
 
+#define JAVA_13_VERSION                   57
+
 void ClassFileParser::set_class_bad_constant_seen(short bad_constant) {
   assert((bad_constant == 19 || bad_constant == 20) && _major_version >= JAVA_9_VERSION,
          "Unexpected bad constant pool entry");
   if (_bad_constant_seen == 0) _bad_constant_seen = bad_constant;
 }
< prev index next >