O3: Get rid of the unused addToRemoveList function.

This commit is contained in:
Gabe Black 2011-08-07 15:41:10 -07:00
parent 9c806fe65a
commit 5c0e6e6092
2 changed files with 0 additions and 12 deletions

View file

@ -1418,15 +1418,6 @@ FullO3CPU<Impl>::instDone(ThreadID tid)
system->instEventQueue.serviceEvents(system->totalNumInsts);
}
template <class Impl>
void
FullO3CPU<Impl>::addToRemoveList(DynInstPtr &inst)
{
removeInstsThisCycle = true;
removeList.push(inst->getInstListIt());
}
template <class Impl>
void
FullO3CPU<Impl>::removeFrontInst(DynInstPtr &inst)

View file

@ -474,9 +474,6 @@ class FullO3CPU : public BaseO3CPU
/** Function to tell the CPU that an instruction has completed. */
void instDone(ThreadID tid);
/** Add Instructions to the CPU Remove List*/
void addToRemoveList(DynInstPtr &inst);
/** Remove an instruction from the front end of the list. There's
* no restriction on location of the instruction.
*/