From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=37321 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PGboc-0005RK-Cv for qemu-devel@nongnu.org; Thu, 11 Nov 2010 13:24:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PGboa-0000en-TQ for qemu-devel@nongnu.org; Thu, 11 Nov 2010 13:24:06 -0500 Received: from mnementh.archaic.org.uk ([81.2.115.146]:46367) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PGboa-0000e6-FV for qemu-devel@nongnu.org; Thu, 11 Nov 2010 13:24:04 -0500 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.69) (envelope-from ) id 1PGboY-0007VQ-VH for qemu-devel@nongnu.org; Thu, 11 Nov 2010 18:24:02 +0000 From: Peter Maydell Date: Thu, 11 Nov 2010 18:24:00 +0000 Message-Id: <1289499842-28818-7-git-send-email-peter.maydell@linaro.org> In-Reply-To: <1289499842-28818-1-git-send-email-peter.maydell@linaro.org> References: <1289499842-28818-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PATCH 6/8] ARM: Ignore top 16 bits when doing VCVT from 16 bit fixed point List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org VCVT of 16 bit fixed point to float should ignore the top 16 bits of the source register. Cast to int16_t and friends rather than int16 -- the former is guaranteed exactly 16 bits wide where the latter is merely at least 16 bits wide (and so is usually 32 bits). Signed-off-by: Peter Maydell --- target-arm/helper.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/target-arm/helper.c b/target-arm/helper.c index 628094f..66648d8 100644 --- a/target-arm/helper.c +++ b/target-arm/helper.c @@ -2558,7 +2558,7 @@ float32 VFP_HELPER(fcvts, d)(float64 x, CPUState *env) ftype VFP_HELPER(name##to, p)(ftype x, uint32_t shift, CPUState *env) \ { \ ftype tmp; \ - tmp = sign##int32_to_##ftype ((itype)vfp_##p##toi(x), \ + tmp = sign##int32_to_##ftype ((itype##_t)vfp_##p##toi(x), \ &env->vfp.fp_status); \ return ftype##_scalbn(tmp, -(int)shift, &env->vfp.fp_status); \ } \ -- 1.7.1