summaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorKevin Lim <ktlim@umich.edu>2007-04-26 00:07:42 -0400
committerKevin Lim <ktlim@umich.edu>2007-04-26 00:07:42 -0400
commit092951e2b1daab7049608b35b723f318d2fac948 (patch)
tree5cf1bcc1ef361f10aaaaf5a3cb5eeaae1e26a868 /src/cpu
parent15cc194d714ce9c3f5fe706487534ed447847d88 (diff)
downloadgem5-092951e2b1daab7049608b35b723f318d2fac948.tar.xz
Remove extra delete that was causing segfault.
--HG-- extra : convert_revision : 8a27ed80308c95988f3bc43d670dc0ac9e946d39
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/o3/lsq_unit_impl.hh1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cpu/o3/lsq_unit_impl.hh b/src/cpu/o3/lsq_unit_impl.hh
index 44e2cea76..bde4f8079 100644
--- a/src/cpu/o3/lsq_unit_impl.hh
+++ b/src/cpu/o3/lsq_unit_impl.hh
@@ -680,7 +680,6 @@ LSQUnit<Impl>::writebackStores()
inst->seqNum);
WritebackEvent *wb = new WritebackEvent(inst, data_pkt, this);
wb->schedule(curTick + 1);
- delete state;
completeStore(storeWBIdx);
incrStIdx(storeWBIdx);
continue;