From: Kevin Lim Date: Thu, 26 Apr 2007 04:07:42 +0000 (-0400) Subject: Remove extra delete that was causing segfault. X-Git-Tag: m5_2.0_beta3~28 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=092951e2b1daab7049608b35b723f318d2fac948;p=gem5.git Remove extra delete that was causing segfault. --HG-- extra : convert_revision : 8a27ed80308c95988f3bc43d670dc0ac9e946d39 --- 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::writebackStores() inst->seqNum); WritebackEvent *wb = new WritebackEvent(inst, data_pkt, this); wb->schedule(curTick + 1); - delete state; completeStore(storeWBIdx); incrStIdx(storeWBIdx); continue;