summaryrefslogtreecommitdiff
path: root/src/cpu/inorder/resources/tlb_unit.cc
diff options
context:
space:
mode:
authorKorey Sewell <ksewell@umich.edu>2011-02-18 14:28:10 -0500
committerKorey Sewell <ksewell@umich.edu>2011-02-18 14:28:10 -0500
commitff48afcf4f3d8cccc899c5840734228a5bebc045 (patch)
tree19df8347ad16ae2574fc948831581762421fb520 /src/cpu/inorder/resources/tlb_unit.cc
parent991d0185c68b53a04ae5d1f1a05749bbfddced89 (diff)
downloadgem5-ff48afcf4f3d8cccc899c5840734228a5bebc045.tar.xz
inorder: remove reqRemoveList
we are going to be getting away from creating new resource requests for every instruction so no more need to keep track of a reqRemoveList and clean it up every tick
Diffstat (limited to 'src/cpu/inorder/resources/tlb_unit.cc')
-rw-r--r--src/cpu/inorder/resources/tlb_unit.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/cpu/inorder/resources/tlb_unit.cc b/src/cpu/inorder/resources/tlb_unit.cc
index 2e19ea928..0b273eabc 100644
--- a/src/cpu/inorder/resources/tlb_unit.cc
+++ b/src/cpu/inorder/resources/tlb_unit.cc
@@ -257,9 +257,6 @@ TLBUnit::squash(DynInstPtr inst, int stage_num,
if (resourceEvent[req_slot_num].scheduled())
unscheduleEvent(req_slot_num);
- // Mark request for later removal
- cpu->reqRemoveList.push(req_ptr);
-
// Mark slot for removal from resource
slot_remove_list.push_back(req_ptr->getSlot());
}