--- old/src/share/vm/ci/ciMethod.hpp 2016-11-16 09:31:43.419379661 +0000 +++ new/src/share/vm/ci/ciMethod.hpp 2016-11-16 09:31:43.293379670 +0000 @@ -243,6 +243,11 @@ ciField* get_field_at_bci( int bci, bool &will_link); ciMethod* get_method_at_bci(int bci, bool &will_link, ciSignature* *declared_signature); + ciMethod* get_method_at_bci(int bci) { + bool ignored_will_link; + ciSignature* ignored_declared_signature; + return get_method_at_bci(bci, ignored_will_link, &ignored_declared_signature); + } // Given a certain calling environment, find the monomorphic target // for the call. Return NULL if the call is not monomorphic in // its calling environment.