From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:48067) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QPLfz-0007JF-LZ for qemu-devel@nongnu.org; Wed, 25 May 2011 17:31:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QPLfy-00027d-Bl for qemu-devel@nongnu.org; Wed, 25 May 2011 17:31:35 -0400 Received: from mail-px0-f173.google.com ([209.85.212.173]:34193) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QPLfy-00027Q-7F for qemu-devel@nongnu.org; Wed, 25 May 2011 17:31:34 -0400 Received: by pxi16 with SMTP id 16so48542pxi.4 for ; Wed, 25 May 2011 14:31:33 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <4DDD6B41.1020507@mail.berlios.de> References: <1305812779-23175-1-git-send-email-peter.maydell@linaro.org> <1305812779-23175-7-git-send-email-peter.maydell@linaro.org> <4DDD6B41.1020507@mail.berlios.de> Date: Wed, 25 May 2011 22:31:32 +0100 Message-ID: From: Peter Maydell Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v2 6/6] target-arm: Use correct float status for Neon int-float conversions List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Weil Cc: patches@linaro.org, qemu-devel@nongnu.org, Aurelien Jarno , Paul Brook On 25 May 2011 21:49, Stefan Weil wrote: > This patch breaks compilation at least on 64 bit hosts with configure opt= ion > --enable-debug-tcg > (tested on 64 bit Debian Linux). > > target-arm/translate.c: In function =E2=80=98gen_vfp_uito=E2=80=99: > target-arm/translate.c:999: error: incompatible type for argument 2 of > =E2=80=98tcg_gen_addi_i32=E2=80=99 Oops. Should be using tcg_temp_new_ptr()/tcg_gen_addi_ptr(), not the i32 specific ops. I'll put together a fix tomorrow. -- PMM