< prev index next >

src/hotspot/share/jfr/instrumentation/jfrEventClassTransformer.cpp

Print this page

        

*** 1464,1481 **** class_name, cld, pd, NULL, // host klass NULL, // cp_patches ClassFileParser::INTERNAL, // internal visibility THREAD); if (HAS_PENDING_EXCEPTION) { log_pending_exception(PENDING_EXCEPTION); CLEAR_PENDING_EXCEPTION; return NULL; } ! InstanceKlass* const new_ik = new_parser.create_instance_klass(false, THREAD); if (HAS_PENDING_EXCEPTION) { log_pending_exception(PENDING_EXCEPTION); CLEAR_PENDING_EXCEPTION; return NULL; } --- 1464,1484 ---- class_name, cld, pd, NULL, // host klass NULL, // cp_patches + false, // is_hidden + false, // can_access_vm_annotations ClassFileParser::INTERNAL, // internal visibility THREAD); if (HAS_PENDING_EXCEPTION) { log_pending_exception(PENDING_EXCEPTION); CLEAR_PENDING_EXCEPTION; return NULL; } ! ClassInstanceInfo cl_inst_info; ! InstanceKlass* const new_ik = new_parser.create_instance_klass(false, cl_inst_info, THREAD); if (HAS_PENDING_EXCEPTION) { log_pending_exception(PENDING_EXCEPTION); CLEAR_PENDING_EXCEPTION; return NULL; }
< prev index next >