From ec64b81a9d0de38c5e4ad32a80716ba12ef413fa Mon Sep 17 00:00:00 2001 From: Nikos Nikoleris Date: Sat, 10 Jan 2015 14:30:53 -0600 Subject: cpu: fix RetiredStores probe point Committed by: Nilay Vaish --- src/cpu/base.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cpu/base.cc') 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); -- cgit v1.2.3