From 51ed3c3fd9f91a686bf87256c966991e6c57c1ff Mon Sep 17 00:00:00 2001 From: Kevin Lim Date: Thu, 1 Jun 2006 15:39:45 -0400 Subject: [PATCH] Fix stat bug. --HG-- extra : convert_revision : 3e4df934478de1ef6a84f193d9ef722157ac6baf --- cpu/o3/commit_impl.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/o3/commit_impl.hh b/cpu/o3/commit_impl.hh index 9409697eb..798f30294 100644 --- a/cpu/o3/commit_impl.hh +++ b/cpu/o3/commit_impl.hh @@ -925,7 +925,7 @@ DefaultCommit::commitInsts() numCommittedDist.sample(num_committed); if (num_committed == commitWidth) { - commitEligibleSamples[0]++; + commitEligibleSamples++; } }