changeset d3b7970e1b33 in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=d3b7970e1b33
description:
        cpu: Removing an unused variable in rename

diffstat:

 src/cpu/o3/rename_impl.hh |  3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diffs (18 lines):

diff -r 49a534f54e72 -r d3b7970e1b33 src/cpu/o3/rename_impl.hh
--- a/src/cpu/o3/rename_impl.hh Thu Oct 17 10:20:45 2013 -0500
+++ b/src/cpu/o3/rename_impl.hh Thu Oct 17 10:20:45 2013 -0500
@@ -338,14 +338,11 @@
     renameStatus[tid] = Squashing;
 
     // Squash any instructions from decode.
-    unsigned squashCount = 0;
-
     for (int i=0; i<fromDecode->size; i++) {
         if (fromDecode->insts[i]->threadNumber == tid &&
             fromDecode->insts[i]->seqNum > squash_seq_num) {
             fromDecode->insts[i]->setSquashed();
             wroteToTimeBuffer = true;
-            squashCount++;
         }
 
     }
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to