use %x,%x format for listing start and end addresses

This matches the format expected by recent versions of GDB's
disassemble command.
This commit is contained in:
Joel Dice 2013-04-03 16:07:06 -06:00
parent 13d128c7be
commit cc8d655762

View File

@ -9473,7 +9473,7 @@ logCompile(MyThread* t, const void* code, unsigned size, const char* class_,
}
if (compileLog) {
fprintf(compileLog, "%p %p %s.%s%s\n",
fprintf(compileLog, "%p,%p %s.%s%s\n",
code, static_cast<const uint8_t*>(code) + size,
class_, name, spec);
}