diff options
author | Korey Sewell <ksewell@umich.edu> | 2011-06-19 21:43:37 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2011-06-19 21:43:37 -0400 |
commit | 71018f5e8b59c359065580a41a96f1a78a88dea9 (patch) | |
tree | 17486a65f463cb7bb9085182edc2d480cde7b1f6 /src/cpu/inorder/reg_dep_map.cc | |
parent | 34b2500f09639e950cb590a34e51a1db853abf11 (diff) | |
download | gem5-71018f5e8b59c359065580a41a96f1a78a88dea9.tar.xz |
inorder: remove stalls on trap squash
Diffstat (limited to 'src/cpu/inorder/reg_dep_map.cc')
-rw-r--r-- | src/cpu/inorder/reg_dep_map.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/inorder/reg_dep_map.cc b/src/cpu/inorder/reg_dep_map.cc index 075c31208..2cb6b7adb 100644 --- a/src/cpu/inorder/reg_dep_map.cc +++ b/src/cpu/inorder/reg_dep_map.cc @@ -105,7 +105,7 @@ RegDepMap::insert(DynInstPtr inst) inst->flattenDestReg(i, flat_idx); if (flat_idx == TheISA::ZeroReg) { - DPRINTF(IntRegs, "[sn:%i]: Ignoring Insert-Dependency tracking for " + DPRINTF(RegDepMap, "[sn:%i]: Ignoring Insert-Dependency tracking for " "ISA-ZeroReg (Int. Reg %i).\n", inst->seqNum, flat_idx); continue; @@ -145,7 +145,7 @@ RegDepMap::remove(DynInstPtr inst) RegIndex flat_idx = inst->flattenedDestRegIdx(i); if (flat_idx == TheISA::ZeroReg) { - DPRINTF(IntRegs, "[sn:%i]: Ignoring Remove-Dependency tracking for " + DPRINTF(RegDepMap, "[sn:%i]: Ignoring Remove-Dependency tracking for " "ISA-ZeroReg (Int. Reg %i).\n", inst->seqNum, flat_idx); continue; |