src/share/vm/c1/c1_IR.hpp

changeset 1688
f70b0d9ab095
parent 1570
e66fd840cb6b
child 1730
3cf667df43ef
     1.1 --- a/src/share/vm/c1/c1_IR.hpp	Mon Feb 08 12:20:09 2010 -0800
     1.2 +++ b/src/share/vm/c1/c1_IR.hpp	Tue Feb 09 01:31:13 2010 -0800
     1.3 @@ -253,7 +253,8 @@
     1.4      // reexecute allowed only for the topmost frame
     1.5      bool reexecute = topmost ? should_reexecute() : false;
     1.6      bool is_method_handle_invoke = false;
     1.7 -    recorder->describe_scope(pc_offset, scope()->method(), bci(), reexecute, is_method_handle_invoke, locvals, expvals, monvals);
     1.8 +    bool return_oop = false; // This flag will be ignored since it used only for C2 with escape analysis.
     1.9 +    recorder->describe_scope(pc_offset, scope()->method(), bci(), reexecute, is_method_handle_invoke, return_oop, locvals, expvals, monvals);
    1.10    }
    1.11  };
    1.12  

mercurial