hotspot/src/share/vm/ci/ciField.cpp
changeset 14828 bb9dffedf46c
parent 13728 882756847a04
child 19770 7cb9f982ea81
--- a/hotspot/src/share/vm/ci/ciField.cpp	Mon Dec 17 11:00:22 2012 -0800
+++ b/hotspot/src/share/vm/ci/ciField.cpp	Tue Dec 18 14:55:25 2012 +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)");