--- old/src/hotspot/share/classfile/klassFactory.cpp 2018-10-31 16:00:06.286830607 -0400 +++ new/src/hotspot/share/classfile/klassFactory.cpp 2018-10-31 16:00:05.727508464 -0400 @@ -102,6 +102,7 @@ NULL, // unsafe_anonymous_host NULL, // cp_patches false, // is_nonfindable + false, // can_access_vm_annotations ClassFileParser::BROADCAST, // publicity level CHECK_NULL); InstanceKlass* new_ik = parser.create_instance_klass(true /* changed_by_loadhook */, @@ -186,7 +187,8 @@ Handle protection_domain, const InstanceKlass* unsafe_anonymous_host, GrowableArray* cp_patches, - bool is_nonfindable, + const bool is_nonfindable, + const bool can_access_vm_annotations, TRAPS) { assert(stream != NULL, "invariant"); assert(loader_data != NULL, "invariant"); @@ -219,6 +221,7 @@ unsafe_anonymous_host, cp_patches, is_nonfindable, + can_access_vm_annotations, ClassFileParser::BROADCAST, // publicity level CHECK_NULL);