changeset e75d9251f7e6 in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=e75d9251f7e6
description:
        O3: Remove some asserts that no longer seem to be valid.

diffstat:

 src/cpu/o3/decode_impl.hh |  4 ----
 src/cpu/o3/rename_impl.hh |  4 ----
 2 files changed, 0 insertions(+), 8 deletions(-)

diffs (28 lines):

diff -r 42052d5bb793 -r e75d9251f7e6 src/cpu/o3/decode_impl.hh
--- a/src/cpu/o3/decode_impl.hh Mon Jan 09 18:08:20 2012 -0600
+++ b/src/cpu/o3/decode_impl.hh Mon Jan 09 18:08:20 2012 -0600
@@ -447,10 +447,6 @@
 DefaultDecode<Impl>::sortInsts()
 {
     int insts_from_fetch = fromFetch->size;
-#ifdef DEBUG
-    for (ThreadID tid = 0; tid < numThreads; tid++)
-        assert(insts[tid].empty());
-#endif
     for (int i = 0; i < insts_from_fetch; ++i) {
         insts[fromFetch->insts[i]->threadNumber].push(fromFetch->insts[i]);
     }
diff -r 42052d5bb793 -r e75d9251f7e6 src/cpu/o3/rename_impl.hh
--- a/src/cpu/o3/rename_impl.hh Mon Jan 09 18:08:20 2012 -0600
+++ b/src/cpu/o3/rename_impl.hh Mon Jan 09 18:08:20 2012 -0600
@@ -767,10 +767,6 @@
 DefaultRename<Impl>::sortInsts()
 {
     int insts_from_decode = fromDecode->size;
-#ifdef DEBUG
-    for (ThreadID tid = 0; tid < numThreads; tid++)
-        assert(insts[tid].empty());
-#endif
     for (int i = 0; i < insts_from_decode; ++i) {
         DynInstPtr inst = fromDecode->insts[i];
         insts[inst->threadNumber].push_back(inst);
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to