From patchwork Tue Dec 7 15:43:36 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 74577 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 25D36B70AA for ; Wed, 8 Dec 2010 03:08:02 +1100 (EST) Received: from localhost ([127.0.0.1]:56715 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PQ059-000677-E1 for incoming@patchwork.ozlabs.org; Tue, 07 Dec 2010 11:07:59 -0500 Received: from [140.186.70.92] (port=52616 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PPzhu-0001DO-Ow for qemu-devel@nongnu.org; Tue, 07 Dec 2010 10:44:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PPzhr-0006dR-2g for qemu-devel@nongnu.org; Tue, 07 Dec 2010 10:43:58 -0500 Received: from mnementh.archaic.org.uk ([81.2.115.146]:13458) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PPzhq-0006bm-R9 for qemu-devel@nongnu.org; Tue, 07 Dec 2010 10:43:55 -0500 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.69) (envelope-from ) id 1PPzhf-0000yF-6B; Tue, 07 Dec 2010 15:43:43 +0000 From: Peter Maydell To: Anthony Liguori , qemu-devel@nongnu.org Date: Tue, 7 Dec 2010 15:43:36 +0000 Message-Id: <1291736623-3695-8-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1291736623-3695-1-git-send-email-peter.maydell@linaro.org> References: <1291736623-3695-1-git-send-email-peter.maydell@linaro.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) Cc: Subject: [Qemu-devel] [PATCH 07/14] ARM: Fix sense of to_integer bit in Neon VCVT float/int conversion X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Peter Maydell Reviewed-by: Nathan Froyd --- target-arm/translate.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/target-arm/translate.c b/target-arm/translate.c index 0b3e4e6..d4a0666 100644 --- a/target-arm/translate.c +++ b/target-arm/translate.c @@ -5664,16 +5664,16 @@ static int disas_neon_data_insn(CPUState * env, DisasContext *s, uint32_t insn) gen_helper_rsqrte_f32(cpu_F0s, cpu_F0s, cpu_env); break; case 60: /* VCVT.F32.S32 */ - gen_vfp_tosiz(0); + gen_vfp_sito(0); break; case 61: /* VCVT.F32.U32 */ - gen_vfp_touiz(0); + gen_vfp_uito(0); break; case 62: /* VCVT.S32.F32 */ - gen_vfp_sito(0); + gen_vfp_tosiz(0); break; case 63: /* VCVT.U32.F32 */ - gen_vfp_uito(0); + gen_vfp_touiz(0); break; default: /* Reserved: 21, 29, 39-56 */