diff src/share/vm/ci/ciMethod.cpp @ 1251:576e77447e3c

6923002: assert(false,"this call site should not be polymorphic") Summary: Clear the total count when a receiver information is cleared. Reviewed-by: never, jrose
author kvn
date Sun, 07 Feb 2010 12:15:06 -0800
parents 87684f1a88b5
children c18cbe5936b8 61b2245abf36
line wrap: on
line diff
--- a/src/share/vm/ci/ciMethod.cpp	Fri Feb 05 11:07:40 2010 -0800
+++ b/src/share/vm/ci/ciMethod.cpp	Sun Feb 07 12:15:06 2010 -0800
@@ -445,7 +445,8 @@
                (morphism == ciCallProfile::MorphismLimit && count == 0)) {
 #ifdef ASSERT
              if (count > 0) {
-               tty->print_cr("bci: %d", bci);
+               this->print_short_name(tty);
+               tty->print_cr(" @ bci:%d", bci);
                this->print_codes();
                assert(false, "this call site should not be polymorphic");
              }