diff -r 3c7232fec7fd -r 2bf74bb6f41d src/cpu/simple/base.cc --- a/src/cpu/simple/base.cc Sun Apr 15 01:07:39 2012 -0700 +++ b/src/cpu/simple/base.cc Sun Apr 15 01:07:49 2012 -0700 @@ -414,13 +414,12 @@ } //If we decoded an instruction this "tick", record information about it. - if(curStaticInst) - { + if (curStaticInst) { #if TRACING_ON traceData = tracer->getInstRecord(curTick(), tc, curStaticInst, thread->pcState(), curMacroStaticInst); - DPRINTF(Decode,"Decode: Decoded %s instruction: 0x%x\n", + DPRINTF(Decode,"Decode: Decoded %s instruction: %#x\n", curStaticInst->getName(), curStaticInst->machInst); #endif // TRACING_ON }