# HG changeset patch # User Thomas Wuerthinger # Date 1362695045 -3600 # Node ID 53bc0138001183567d521296554975934af20f10 # Parent 2156359ee51999aab13027c531eb564667b819f5 Fix client build. diff -r 2156359ee519 -r 53bc01380011 src/share/vm/c1/c1_IR.hpp --- a/src/share/vm/c1/c1_IR.hpp Thu Mar 07 22:33:46 2013 +0100 +++ b/src/share/vm/c1/c1_IR.hpp Thu Mar 07 23:24:05 2013 +0100 @@ -240,7 +240,7 @@ // reexecute allowed only for the topmost frame bool reexecute = topmost ? should_reexecute() : false; bool return_oop = false; // This flag will be ignored since it used only for C2 with escape analysis. - recorder->describe_scope(pc_offset, scope()->method(), bci(), reexecute, is_method_handle_invoke, return_oop, locvals, expvals, monvals); + recorder->describe_scope(pc_offset, methodHandle(), scope()->method(), bci(), reexecute, is_method_handle_invoke, return_oop, locvals, expvals, monvals); } };