summaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2011-08-07 15:41:10 -0700
committerGabe Black <gblack@eecs.umich.edu>2011-08-07 15:41:10 -0700
commit5c0e6e6092bd532d861445c735fb5eba865f999d (patch)
treed54b106403e4e5cdb96f33364ef11ec249a9d646 /src/cpu
parent9c806fe65ae64e7cb35783758b1798d9759038b8 (diff)
downloadgem5-5c0e6e6092bd532d861445c735fb5eba865f999d.tar.xz
O3: Get rid of the unused addToRemoveList function.
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/o3/cpu.cc9
-rw-r--r--src/cpu/o3/cpu.hh3
2 files changed, 0 insertions, 12 deletions
diff --git a/src/cpu/o3/cpu.cc b/src/cpu/o3/cpu.cc
index cd4a3e867..441bd4389 100644
--- a/src/cpu/o3/cpu.cc
+++ b/src/cpu/o3/cpu.cc
@@ -1420,15 +1420,6 @@ FullO3CPU<Impl>::instDone(ThreadID tid)
template <class Impl>
void
-FullO3CPU<Impl>::addToRemoveList(DynInstPtr &inst)
-{
- removeInstsThisCycle = true;
-
- removeList.push(inst->getInstListIt());
-}
-
-template <class Impl>
-void
FullO3CPU<Impl>::removeFrontInst(DynInstPtr &inst)
{
DPRINTF(O3CPU, "Removing committed instruction [tid:%i] PC %s "
diff --git a/src/cpu/o3/cpu.hh b/src/cpu/o3/cpu.hh
index 43a2b100d..7095e52ec 100644
--- a/src/cpu/o3/cpu.hh
+++ b/src/cpu/o3/cpu.hh
@@ -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.
*/