src/share/vm/ci/ciMethod.hpp

changeset 8651
a50ab9692b6f
parent 7890
bf41eee321e5
child 8652
057571442f86
     1.1 --- a/src/share/vm/ci/ciMethod.hpp	Fri Nov 11 13:32:58 2016 +0000
     1.2 +++ b/src/share/vm/ci/ciMethod.hpp	Thu Nov 17 16:06:56 2016 +0000
     1.3 @@ -243,6 +243,11 @@
     1.4  
     1.5    ciField*      get_field_at_bci( int bci, bool &will_link);
     1.6    ciMethod*     get_method_at_bci(int bci, bool &will_link, ciSignature* *declared_signature);
     1.7 +  ciMethod*     get_method_at_bci(int bci) {
     1.8 +    bool ignored_will_link;
     1.9 +    ciSignature* ignored_declared_signature;
    1.10 +    return get_method_at_bci(bci, ignored_will_link, &ignored_declared_signature);
    1.11 +  }
    1.12    // Given a certain calling environment, find the monomorphic target
    1.13    // for the call.  Return NULL if the call is not monomorphic in
    1.14    // its calling environment.

mercurial