diff options
author | Korey Sewell <ksewell@umich.edu> | 2008-02-27 16:53:08 -0500 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2008-02-27 16:53:08 -0500 |
commit | b45cf21a8e2ead22996daa0960747db8ec95db71 (patch) | |
tree | f55281cb837a780e433205fa53403a4aa602b956 /src/cpu/o3 | |
parent | 34715cc691e217016ccce9bd1383dac9cca7126f (diff) | |
download | gem5-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/cpu/o3')
-rw-r--r-- | src/cpu/o3/cpu.cc | 2 |
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); |