summaryrefslogtreecommitdiff
path: root/src/cpu/o3/iew_impl.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/o3/iew_impl.hh')
-rw-r--r--src/cpu/o3/iew_impl.hh6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/cpu/o3/iew_impl.hh b/src/cpu/o3/iew_impl.hh
index 44afc9076..5b67e4c3c 100644
--- a/src/cpu/o3/iew_impl.hh
+++ b/src/cpu/o3/iew_impl.hh
@@ -1329,11 +1329,9 @@ DefaultIEW<Impl>::executeInsts()
}
if (inst->srcTainted()) {
- DPRINTF(IEW, "Taint instruction PC: %s [sn:%i]\n", inst->pcState(), inst->seqNum);
- inst->taintDestRegs(true);
+ inst->taintDestRegs(true, "source is tainted");
} else {
- DPRINTF(IEW, "Untaint instruction PC: %s [sn:%i]\n", inst->pcState(), inst->seqNum);
- inst->taintDestRegs(false);
+ inst->taintDestRegs(false, "source is not tainted");
}
inst->setExecuted();