< prev index next >

src/share/vm/opto/loopnode.cpp

Print this page

        

@@ -1899,11 +1899,11 @@
       tty->print("int),");
     int stride_con  = cl->stride_con();
     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");
     if (cl->is_post_loop()) tty->print(" post");
   }
< prev index next >