diff src/share/vm/ci/ciField.cpp @ 7482:989155e2d07a

Merge with hs25-b15.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Wed, 16 Jan 2013 01:34:24 +0100
parents e522a00b91aa ad5dd04754ee
children cefad50507d8
line wrap: on
line diff
--- a/src/share/vm/ci/ciField.cpp	Tue Jan 15 18:54:02 2013 +0100
+++ b/src/share/vm/ci/ciField.cpp	Wed Jan 16 01:34:24 2013 +0100
@@ -366,10 +366,12 @@
 // ------------------------------------------------------------------
 // ciField::print
 void ciField::print() {
-  tty->print("<ciField ");
+  tty->print("<ciField name=");
   _holder->print_name();
   tty->print(".");
   _name->print_symbol();
+  tty->print(" signature=");
+  _signature->print_symbol();
   tty->print(" offset=%d type=", _offset);
   if (_type != NULL) _type->print_name();
   else               tty->print("(reference)");