Merge zizzer.eecs.umich.edu:/bk/newmem

into  ahchoo.blinky.homelinux.org:/home/gblack/m5/newmem-x86

--HG--
extra : convert_revision : 77222b85492c8ad6c0b776fa34c83065c77c402e
This commit is contained in:
Gabe Black
2007-06-04 19:53:05 +00:00
2 changed files with 9 additions and 9 deletions

View File

@@ -413,21 +413,21 @@ BaseSimpleCPU::preExecute()
fetchMicroOp(thread->readMicroPC());
}
#if TRACING_ON
//If we decoded an instruction this "tick", record information about it.
if(curStaticInst)
{
#if TRACING_ON
traceData = Trace::getInstRecord(curTick, tc, curStaticInst,
thread->readPC());
DPRINTF(Decode,"Decode: Decoded %s instruction: 0x%x\n",
curStaticInst->getName(), curStaticInst->machInst);
#endif // TRACING_ON
#if FULL_SYSTEM
thread->setInst(inst);
#endif // FULL_SYSTEM
}
#endif // TRACING_ON
}
void