diff -r 57ad70bcf06c -r 15936b142f86 src/hotspot/share/ci/ciEnv.cpp --- a/src/hotspot/share/ci/ciEnv.cpp Wed Nov 13 11:27:50 2019 +0000 +++ b/src/hotspot/share/ci/ciEnv.cpp Wed Nov 13 08:23:23 2019 -0500 @@ -760,7 +760,7 @@ InstanceKlass* accessor_klass = accessor->get_instanceKlass(); Klass* holder_klass = holder->get_Klass(); - methodHandle dest_method; + Method* dest_method; LinkInfo link_info(holder_klass, name, sig, accessor_klass, LinkInfo::needs_access_check, tag); switch (bc) { case Bytecodes::_invokestatic: @@ -782,7 +782,7 @@ default: ShouldNotReachHere(); } - return dest_method(); + return dest_method; }