summaryrefslogtreecommitdiff
path: root/src/cpu/o3/cpu.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/o3/cpu.cc')
-rw-r--r--src/cpu/o3/cpu.cc9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/cpu/o3/cpu.cc b/src/cpu/o3/cpu.cc
index ad4e6d549..4cbbd0ec6 100644
--- a/src/cpu/o3/cpu.cc
+++ b/src/cpu/o3/cpu.cc
@@ -1282,7 +1282,14 @@ template <class Impl>
void
FullO3CPU<Impl>::setTaint(PhysRegIdPtr phys_reg)
{
- regFile.setTaint(phys_reg);
+ regFile.setTaint(phys_reg, true);
+}
+
+template <class Impl>
+void
+FullO3CPU<Impl>::clearTaint(PhysRegIdPtr phys_reg)
+{
+ regFile.setTaint(phys_reg, false);
}
template <class Impl>