changeset 2905:c2ef8b5cd1f3

7100165: JSR 292: leftover printing code in methodHandleWalk.cpp Reviewed-by: kvn, twisti
author never
date Thu, 13 Oct 2011 14:08:15 -0700
parents 876f4a66bd71
children 623aec2a90f7
files src/share/vm/prims/methodHandleWalk.cpp
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/prims/methodHandleWalk.cpp	Fri Oct 07 13:28:44 2011 +0200
+++ b/src/share/vm/prims/methodHandleWalk.cpp	Thu Oct 13 14:08:15 2011 -0700
@@ -1387,10 +1387,8 @@
   int total = count1 + count2;
   if (count1 != -1 && count2 != -1 && total != 0) {
     // Normalize the collect counts to the invoke_count
-    tty->print("counts %d %d scaled by %d = ", count2, count1, _invoke_count);
     if (count1 != 0) _not_taken_count = (int)(_invoke_count * count1 / (double)total);
     if (count2 != 0) _taken_count = (int)(_invoke_count * count2 / (double)total);
-    tty->print_cr("%d %d", _taken_count, _not_taken_count);
     return true;
   }
   return false;