hotspot/src/share/vm/ci/ciMethod.hpp
changeset 35086 bbf32241d851
parent 34169 b0b7187852b7
child 35135 dd2ce9021031
--- a/hotspot/src/share/vm/ci/ciMethod.hpp	Fri Dec 04 16:38:04 2015 +0100
+++ b/hotspot/src/share/vm/ci/ciMethod.hpp	Fri Dec 04 23:46:19 2015 +0300
@@ -250,6 +250,12 @@
 
   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.