aboutsummaryrefslogtreecommitdiff
path: root/src/share/vm/opto/parse1.cpp
diff options
context:
space:
mode:
authortwisti <none@none>2013-01-09 15:37:23 -0800
committertwisti <none@none>2013-01-09 15:37:23 -0800
commit283fc01ad6438831ca6a859482d1414809cb7fc1 (patch)
treefb25b8dd6974311501e2b9d22ef7425c3109cd74 /src/share/vm/opto/parse1.cpp
parent669e7c650560e079beef673b654f9e34f8e27d69 (diff)
downloadjdk8u_hotspot-283fc01ad6438831ca6a859482d1414809cb7fc1.tar.gz
8005418: JSR 292: virtual dispatch bug in 292 impl
Reviewed-by: jrose, kvn
Diffstat (limited to 'src/share/vm/opto/parse1.cpp')
-rw-r--r--src/share/vm/opto/parse1.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/share/vm/opto/parse1.cpp b/src/share/vm/opto/parse1.cpp
index 700935291..f0f7c8b0a 100644
--- a/src/share/vm/opto/parse1.cpp
+++ b/src/share/vm/opto/parse1.cpp
@@ -1404,7 +1404,8 @@ void Parse::do_one_block() {
do_one_bytecode();
- assert(!have_se || stopped() || failing() || (sp() - pre_bc_sp) == depth, "correct depth prediction");
+ assert(!have_se || stopped() || failing() || (sp() - pre_bc_sp) == depth,
+ err_msg_res("incorrect depth prediction: sp=%d, pre_bc_sp=%d, depth=%d", sp(), pre_bc_sp, depth));
do_exceptions();