diff src/share/vm/c1/c1_IR.hpp @ 8159:c5ff08c22458

Fix regression in client compiler debug recording.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Fri, 08 Mar 2013 00:39:48 +0100
parents 53bc01380011
children b9a918201d47
line wrap: on
line diff
--- a/src/share/vm/c1/c1_IR.hpp	Thu Mar 07 23:24:05 2013 +0100
+++ b/src/share/vm/c1/c1_IR.hpp	Fri Mar 08 00:39:48 2013 +0100
@@ -240,7 +240,8 @@
     // 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, methodHandle(), scope()->method(), bci(), reexecute, is_method_handle_invoke, return_oop, locvals, expvals, monvals);
+    bool rethrow_exception = false;
+    recorder->describe_scope(pc_offset, methodHandle(), scope()->method(), bci(), reexecute, rethrow_exception, is_method_handle_invoke, return_oop, locvals, expvals, monvals);
   }
 };