diff -r 57ad70bcf06c -r 15936b142f86 src/hotspot/share/classfile/vmSymbols.cpp --- a/src/hotspot/share/classfile/vmSymbols.cpp Wed Nov 13 11:27:50 2019 +0000 +++ b/src/hotspot/share/classfile/vmSymbols.cpp Wed Nov 13 08:23:23 2019 -0500 @@ -1069,19 +1069,18 @@ const char* declared_name = name_at(declared_id); const char* actual_name = name_at(actual_id); - methodHandle mh = m; m = NULL; ttyLocker ttyl; if (xtty != NULL) { xtty->begin_elem("intrinsic_misdeclared actual='%s' declared='%s'", actual_name, declared_name); - xtty->method(mh); + xtty->method(m); xtty->end_elem("%s", ""); } if (PrintMiscellaneous && (WizardMode || Verbose)) { tty->print_cr("*** misidentified method; %s(%d) should be %s(%d):", declared_name, declared_id, actual_name, actual_id); - mh()->print_short_name(tty); + m->print_short_name(tty); tty->cr(); } }