From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NjbIJ-0004EN-12 for qemu-devel@nongnu.org; Mon, 22 Feb 2010 11:38:03 -0500 Received: from [199.232.76.173] (port=58912 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NjbII-0004EB-D7 for qemu-devel@nongnu.org; Mon, 22 Feb 2010 11:38:02 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NjbIH-0002Ud-F8 for qemu-devel@nongnu.org; Mon, 22 Feb 2010 11:38:02 -0500 Received: from mail-bw0-f218.google.com ([209.85.218.218]:65260) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NjbIG-0002UN-S9 for qemu-devel@nongnu.org; Mon, 22 Feb 2010 11:38:01 -0500 Received: by bwz10 with SMTP id 10so1801891bwz.2 for ; Mon, 22 Feb 2010 08:37:59 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <4B82B244.6040402@mail.berlios.de> References: <4B82B244.6040402@mail.berlios.de> Date: Mon, 22 Feb 2010 16:37:58 +0000 Message-ID: Subject: Re: [Qemu-devel] [PATCH] tcg: fix build on 32-bit hppa, ppc and sparc hosts From: Jay Foad Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Weil Cc: qemu-devel@nongnu.org, Alexander Graf >> --- a/tcg/ppc/tcg-target.c >> +++ b/tcg/ppc/tcg-target.c >> @@ -1693,7 +1693,6 @@ static const TCGTargetOpDef ppc_op_defs[] =3D { >> =A0 =A0 =A0{ INDEX_op_qemu_ld16u, { "r", "L" } }, >> =A0 =A0 =A0{ INDEX_op_qemu_ld16s, { "r", "L" } }, >> =A0 =A0 =A0{ INDEX_op_qemu_ld32u, { "r", "L" } }, >> - =A0 =A0{ INDEX_op_qemu_ld32s, { "r", "L" } }, >> > > No. As I wrote in the original thread, > conditional compilation is needed here > (or you will get new compile errors). In tcg/ppc/, TCG_TARGET_REG_BITS is always 32, isn't it? Thanks, Jay.