hotspot/src/share/vm/classfile/javaClasses.cpp
changeset 1889 24b003a6fe46
parent 950 6112b627bb36
child 1890 9ce941df84eb
equal deleted inserted replaced
1888:bbf498fb4354 1889:24b003a6fe46
   864       // Neither soucename and linenumber
   864       // Neither soucename and linenumber
   865       sprintf(buf + (int)strlen(buf), "(Unknown Source)");
   865       sprintf(buf + (int)strlen(buf), "(Unknown Source)");
   866     }
   866     }
   867     nmethod* nm = method->code();
   867     nmethod* nm = method->code();
   868     if (WizardMode && nm != NULL) {
   868     if (WizardMode && nm != NULL) {
   869       sprintf(buf + (int)strlen(buf), "(nmethod %#x)", nm);
   869       sprintf(buf + (int)strlen(buf), "(nmethod " PTR_FORMAT ")", (intptr_t)nm);
   870     }
   870     }
   871   }
   871   }
   872 
   872 
   873   return buf;
   873   return buf;
   874 }
   874 }