From: Nikos Nikoleris Date: Sat, 10 Jan 2015 20:30:53 +0000 (-0600) Subject: cpu: fix RetiredStores probe point X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ec64b81a9d0de38c5e4ad32a80716ba12ef413fa;p=gem5.git cpu: fix RetiredStores probe point Committed by: Nilay Vaish --- 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);