O3: Remove some asserts that no longer seem to be valid.
This commit is contained in:
@@ -447,10 +447,6 @@ void
|
||||
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]);
|
||||
}
|
||||
|
||||
@@ -767,10 +767,6 @@ void
|
||||
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);
|
||||
|
||||
Reference in New Issue
Block a user