hotspot/src/share/vm/runtime/globals.cpp
changeset 12598 1256ef9b648a
parent 12157 439a7166bf0f
child 13195 be27e1b6a4b9
equal deleted inserted replaced
12597:904566185bdf 12598:1256ef9b648a
   146     st->print("-XX:%s=" INTX_FORMAT, name, get_intx());
   146     st->print("-XX:%s=" INTX_FORMAT, name, get_intx());
   147   } else if (is_uintx()) {
   147   } else if (is_uintx()) {
   148     st->print("-XX:%s=" UINTX_FORMAT, name, get_uintx());
   148     st->print("-XX:%s=" UINTX_FORMAT, name, get_uintx());
   149   } else if (is_uint64_t()) {
   149   } else if (is_uint64_t()) {
   150     st->print("-XX:%s=" UINT64_FORMAT, name, get_uint64_t());
   150     st->print("-XX:%s=" UINT64_FORMAT, name, get_uint64_t());
       
   151   } else if (is_double()) {
       
   152     st->print("-XX:%s=%f", name, get_double());
   151   } else if (is_ccstr()) {
   153   } else if (is_ccstr()) {
   152     st->print("-XX:%s=", name);
   154     st->print("-XX:%s=", name);
   153     const char* cp = get_ccstr();
   155     const char* cp = get_ccstr();
   154     if (cp != NULL) {
   156     if (cp != NULL) {
   155       // Need to turn embedded '\n's back into separate arguments
   157       // Need to turn embedded '\n's back into separate arguments