summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKorey Sewell <ksewell@umich.edu>2008-02-27 16:53:08 -0500
committerKorey Sewell <ksewell@umich.edu>2008-02-27 16:53:08 -0500
commitb45cf21a8e2ead22996daa0960747db8ec95db71 (patch)
treef55281cb837a780e433205fa53403a4aa602b956 /src
parent34715cc691e217016ccce9bd1383dac9cca7126f (diff)
downloadgem5-b45cf21a8e2ead22996daa0960747db8ec95db71.tar.xz
Fix Load/Store Queue squashing after a SMT thread is removed but ensuring
you are squashing from the current instruction # causing the thread exit. --HG-- extra : convert_revision : ccbeece7dd1d5fee43f30ab19370908972113473
Diffstat (limited to 'src')
-rw-r--r--src/cpu/o3/cpu.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/o3/cpu.cc b/src/cpu/o3/cpu.cc
index ff1ee7920..84aea0479 100644
--- a/src/cpu/o3/cpu.cc
+++ b/src/cpu/o3/cpu.cc
@@ -695,7 +695,7 @@ FullO3CPU<Impl>::removeThread(unsigned tid)
decode.squash(tid);
rename.squash(squash_seq_num, tid);
iew.squash(tid);
- //iew.ldstQueue.squash(squash_seq_num, tid);
+ iew.ldstQueue.squash(squash_seq_num, tid);
commit.rob->squash(squash_seq_num, tid);