From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Nimdj-0004PB-41 for qemu-devel@nongnu.org; Sat, 20 Feb 2010 05:32:47 -0500 Received: from [199.232.76.173] (port=53487 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nimdi-0004Op-6H for qemu-devel@nongnu.org; Sat, 20 Feb 2010 05:32:46 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1Nimdh-0006Hm-I6 for qemu-devel@nongnu.org; Sat, 20 Feb 2010 05:32:46 -0500 Received: from mail-px0-f172.google.com ([209.85.216.172]:48863) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Nimdh-0006Ha-7T for qemu-devel@nongnu.org; Sat, 20 Feb 2010 05:32:45 -0500 Received: by pxi2 with SMTP id 2so44841pxi.27 for ; Sat, 20 Feb 2010 02:32:44 -0800 (PST) MIME-Version: 1.0 In-Reply-To: References: Date: Sat, 20 Feb 2010 12:32:44 +0200 Message-ID: Subject: Re: [Qemu-devel] [PATCH v2] tcg: fix assertion with --enable-debug From: Blue Swirl Content-Type: text/plain; charset=UTF-8 List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jay Foad Cc: qemu-devel@nongnu.org Thanks, applied. On 2/20/10, Jay Foad wrote: > On 32-bit hosts op_qemu_ld32s is unused. Remove it to fix the > following assertion failure: > > qemu-alpha: tcg/tcg.c:1055: > tcg_add_target_add_op_defs: Assertion `tcg_op_defs[op].used' failed. > > Signed-off-by: Jay Foad > --- > tcg/tcg-opc.h | 5 ----- > 1 files changed, 0 insertions(+), 5 deletions(-) > > diff --git a/tcg/tcg-opc.h b/tcg/tcg-opc.h > index 89db3b4..838f1f4 100644 > --- a/tcg/tcg-opc.h > +++ b/tcg/tcg-opc.h > @@ -224,11 +224,6 @@ DEF2(qemu_ld32u, 1, 1, 1, TCG_OPF_CALL_CLOBBER | > TCG_OPF_SIDE_EFFECTS) > DEF2(qemu_ld32u, 1, 2, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS) > #endif > #if TARGET_LONG_BITS == 32 > -DEF2(qemu_ld32s, 1, 1, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS) > -#else > -DEF2(qemu_ld32s, 1, 2, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS) > -#endif > -#if TARGET_LONG_BITS == 32 > DEF2(qemu_ld64, 2, 1, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS) > #else > DEF2(qemu_ld64, 2, 2, 1, TCG_OPF_CALL_CLOBBER | TCG_OPF_SIDE_EFFECTS) > > >