diff -r ca447a71ed22 -r 471fd67f583a src/cpu/o3/cpu.hh --- a/src/cpu/o3/cpu.hh Sun Jul 03 03:28:20 2011 -0700 +++ b/src/cpu/o3/cpu.hh Sun Jul 03 15:46:00 2011 -0700 @@ -474,9 +474,6 @@ /** 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. */ diff -r ca447a71ed22 -r 471fd67f583a src/cpu/o3/cpu.cc --- a/src/cpu/o3/cpu.cc Sun Jul 03 03:28:20 2011 -0700 +++ b/src/cpu/o3/cpu.cc Sun Jul 03 15:46:00 2011 -0700 @@ -1424,15 +1424,6 @@ template void -FullO3CPU::addToRemoveList(DynInstPtr &inst) -{ - removeInstsThisCycle = true; - - removeList.push(inst->getInstListIt()); -} - -template -void FullO3CPU::removeFrontInst(DynInstPtr &inst) { DPRINTF(O3CPU, "Removing committed instruction [tid:%i] PC %s "