8135252: IdealLoopTree::dump_head() prints negative trip count
authorthartmann
Mon, 14 Sep 2015 10:00:26 +0200
changeset 32730 494d1a576a61
parent 32727 320855c2baef
child 32731 9918bb9fe8b6
8135252: IdealLoopTree::dump_head() prints negative trip count Summary: IdealLoopTree::dump_head() should not cast float to int. Reviewed-by: kvn
hotspot/src/share/vm/opto/loopnode.cpp
--- a/hotspot/src/share/vm/opto/loopnode.cpp	Fri Sep 11 17:02:44 2015 -0700
+++ b/hotspot/src/share/vm/opto/loopnode.cpp	Mon Sep 14 10:00:26 2015 +0200
@@ -1901,7 +1901,7 @@
     if (stride_con > 0) tty->print("+");
     tty->print("%d", stride_con);
 
-    tty->print(" (%d iters) ", (int)cl->profile_trip_cnt());
+    tty->print(" (%0.f iters) ", cl->profile_trip_cnt());
 
     if (cl->is_pre_loop ()) tty->print(" pre" );
     if (cl->is_main_loop()) tty->print(" main");