hotspot/src/share/vm/ci/ciField.cpp
changeset 6177 12835feea156
parent 5547 f4b087cbb361
child 7397 5b173b4ca846
equal deleted inserted replaced
6065:26016b8ed869 6177:12835feea156
   337   _name->print_symbol();
   337   _name->print_symbol();
   338   tty->print(" offset=%d type=", _offset);
   338   tty->print(" offset=%d type=", _offset);
   339   if (_type != NULL) _type->print_name();
   339   if (_type != NULL) _type->print_name();
   340   else               tty->print("(reference)");
   340   else               tty->print("(reference)");
   341   tty->print(" is_constant=%s", bool_to_str(_is_constant));
   341   tty->print(" is_constant=%s", bool_to_str(_is_constant));
   342   if (_is_constant) {
   342   if (_is_constant && is_static()) {
   343     tty->print(" constant_value=");
   343     tty->print(" constant_value=");
   344     _constant_value.print();
   344     _constant_value.print();
   345   }
   345   }
   346   tty->print(">");
   346   tty->print(">");
   347 }
   347 }