summaryrefslogtreecommitdiff
path: root/src/cpu/base.cc
diff options
context:
space:
mode:
authorNikos Nikoleris <nikos.nikoleris@gmail.com>2015-01-10 14:30:53 -0600
committerNikos Nikoleris <nikos.nikoleris@gmail.com>2015-01-10 14:30:53 -0600
commitec64b81a9d0de38c5e4ad32a80716ba12ef413fa (patch)
tree5e890cea8bbf20a0c512f0a57dd294e44c251d94 /src/cpu/base.cc
parent1693e526d090f47323e378f0bd8546f28c2a97f7 (diff)
downloadgem5-ec64b81a9d0de38c5e4ad32a80716ba12ef413fa.tar.xz
cpu: fix RetiredStores probe point
Committed by: Nilay Vaish <nilay@cs.wisc.edu>
Diffstat (limited to 'src/cpu/base.cc')
-rw-r--r--src/cpu/base.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/base.cc b/src/cpu/base.cc
index 4ab504379..b761e714e 100644
--- a/src/cpu/base.cc
+++ b/src/cpu/base.cc
@@ -376,7 +376,7 @@ BaseCPU::probeInstCommit(const StaticInstPtr &inst)
ppRetiredLoads->notify(1);
if (inst->isStore())
- ppRetiredLoads->notify(1);
+ ppRetiredStores->notify(1);
if (inst->isControl())
ppRetiredBranches->notify(1);