--- old/src/hotspot/share/ci/ciEnv.cpp 2019-11-11 13:07:47.582571055 -0500 +++ new/src/hotspot/share/ci/ciEnv.cpp 2019-11-11 13:07:47.298563612 -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; }