hotspot/src/share/vm/classfile/javaClasses.cpp
changeset 46630 75aa3e39d02c
parent 46625 edefffab74e2
child 46643 cb5f289ba033
equal deleted inserted replaced
46629:8eeacdc76bf2 46630:75aa3e39d02c
  3043   case T_BOOLEAN:   st->print("%s", value->z ? "true" : "false");   break;
  3043   case T_BOOLEAN:   st->print("%s", value->z ? "true" : "false");   break;
  3044   case T_CHAR:      st->print("%d", value->c);                      break;
  3044   case T_CHAR:      st->print("%d", value->c);                      break;
  3045   case T_BYTE:      st->print("%d", value->b);                      break;
  3045   case T_BYTE:      st->print("%d", value->b);                      break;
  3046   case T_SHORT:     st->print("%d", value->s);                      break;
  3046   case T_SHORT:     st->print("%d", value->s);                      break;
  3047   case T_INT:       st->print("%d", value->i);                      break;
  3047   case T_INT:       st->print("%d", value->i);                      break;
  3048   case T_LONG:      st->print(INT64_FORMAT, value->j);              break;
  3048   case T_LONG:      st->print(JLONG_FORMAT, value->j);              break;
  3049   case T_FLOAT:     st->print("%f", value->f);                      break;
  3049   case T_FLOAT:     st->print("%f", value->f);                      break;
  3050   case T_DOUBLE:    st->print("%lf", value->d);                     break;
  3050   case T_DOUBLE:    st->print("%lf", value->d);                     break;
  3051   default:          st->print("type %d?", type);                    break;
  3051   default:          st->print("type %d?", type);                    break;
  3052   }
  3052   }
  3053 }
  3053 }