From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FIoM2-0006vY-2f for qemu-devel@nongnu.org; Mon, 13 Mar 2006 09:49:02 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FIoM0-0006sh-56 for qemu-devel@nongnu.org; Mon, 13 Mar 2006 09:49:01 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FIoLz-0006se-LX for qemu-devel@nongnu.org; Mon, 13 Mar 2006 09:48:59 -0500 Received: from [65.74.133.6] (helo=mail.codesourcery.com) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1FIoPy-0007tM-R9 for qemu-devel@nongnu.org; Mon, 13 Mar 2006 09:53:07 -0500 From: Paul Brook Subject: Re: [Qemu-devel] [PATCH] Minor mips-related patchlet Date: Mon, 13 Mar 2006 14:48:52 +0000 References: <20060215124530.GC29709@networkno.de> <200603111501.06862.paul@codesourcery.com> <20060313144115.GA10773@networkno.de> In-Reply-To: <20060313144115.GA10773@networkno.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200603131448.53096.paul@codesourcery.com> Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Thiemo Seufer Cc: qemu-devel@nongnu.org > > > +void glue(op_store_T2_gpr_gpr, REG) (void) > > > +{ > > > + env->gpr[REG] = T2; > > > + RETURN(); > > > +} > > > > I don't think there's any point adding this unless it's actually used. > > The ARM target doesn't have this op either. > > Should it then be removed for other targets where it presumably isn't > used as well? A quick check indicates sparc and i386 use this instruction, mips and arm don't have it, and ppc could probably remove it. Paul