summaryrefslogtreecommitdiff
path: root/src/cpu/inorder/resources/decode_unit.cc
diff options
context:
space:
mode:
authorKorey Sewell <ksewell@umich.edu>2011-06-19 21:43:41 -0400
committerKorey Sewell <ksewell@umich.edu>2011-06-19 21:43:41 -0400
commite572c01120fce6502d31f17a91f4bb83c6f9c3fe (patch)
tree4b6b475cbd69419cfdee70d2dec27c21069be34c /src/cpu/inorder/resources/decode_unit.cc
parent59686795e3ff9a2fc82e8cbab16f02c0575b0211 (diff)
downloadgem5-e572c01120fce6502d31f17a91f4bb83c6f9c3fe.tar.xz
inorder: add necessary debug flag header files
Diffstat (limited to 'src/cpu/inorder/resources/decode_unit.cc')
-rw-r--r--src/cpu/inorder/resources/decode_unit.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/inorder/resources/decode_unit.cc b/src/cpu/inorder/resources/decode_unit.cc
index a3548edfc..d0cf7ffb2 100644
--- a/src/cpu/inorder/resources/decode_unit.cc
+++ b/src/cpu/inorder/resources/decode_unit.cc
@@ -62,12 +62,12 @@ DecodeUnit::execute(int slot_num)
if (inst->fault != NoFault) {
inst->setBackSked(cpu->faultSked);
- DPRINTF(Decode,"[tid:%i]: Fault found for instruction [sn:%i]\n",
+ DPRINTF(InOrderDecode,"[tid:%i]: Fault found for instruction [sn:%i]\n",
inst->readTid(), inst->seqNum);
} else {
assert(!inst->staticInst->isMacroop());
inst->setBackSked(cpu->createBackEndSked(inst));
- DPRINTF(Decode,"Decoded instruction [sn:%i]: %s : 0x%x\n",
+ DPRINTF(InOrderDecode,"Decoded instruction [sn:%i]: %s : 0x%x\n",
inst->seqNum, inst->instName(),
inst->staticInst->machInst);
}