From: Ali Saidi Date: Mon, 15 Nov 2010 20:04:03 +0000 (-0600) Subject: ARM: Use the correct delete operator for RFE X-Git-Tag: stable_2012_02_02~748 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=08c5673d56ddb77b3dd93d96b405c96c18c491d2;p=gem5.git ARM: Use the correct delete operator for RFE --- diff --git a/src/arch/arm/insts/mem.hh b/src/arch/arm/insts/mem.hh index 2aa4de1d7..98ad3eb39 100644 --- a/src/arch/arm/insts/mem.hh +++ b/src/arch/arm/insts/mem.hh @@ -110,7 +110,7 @@ class RfeOp : public MightBeMicro virtual ~RfeOp() { - delete uops; + delete [] uops; } StaticInstPtr