CPU: Tidy up some formatting and a DPRINTF in the simple CPU base class.
authorGabe Black <gblack@eecs.umich.edu>
Sun, 15 Apr 2012 19:35:49 +0000 (12:35 -0700)
committerGabe Black <gblack@eecs.umich.edu>
Sun, 15 Apr 2012 19:35:49 +0000 (12:35 -0700)
Put the { on the same line as the if and put a space between the if and the
open paren. Also, use the # format modifier which puts a 0x in front of hex
values automatically. If the ExtMachInst type isn't integral and actually
prints something more complicated, the # falls away harmlessly and we aren't
left with a phantom 0x followed by a bunch of unrelated text.

src/cpu/simple/base.cc

index a5951035eedb01d175640e7f278abc063584843e..ca4090870ca6c2eb219b09d9d64c3dfb7f80056e 100644 (file)
@@ -414,13 +414,12 @@ BaseSimpleCPU::preExecute()
     }
 
     //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
     }