From: Peter Maydell Date: Tue, 7 Dec 2010 15:37:34 +0000 (+0000) Subject: ARM: Implement VCVT to 16 bit integer using new softfloat routines X-Git-Tag: v0.14.0-rc0~350^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=72f24d155ceffa0eb888fd277fa09584bcd1b04c;p=thirdparty%2Fqemu.git ARM: Implement VCVT to 16 bit integer using new softfloat routines Use the softfloat conversion routines for conversion to 16 bit integers, because just casting to a 16 bit type truncates the value rather than saturating it at 16-bit MAXINT/MININT. Signed-off-by: Peter Maydell Reviewed-by: Nathan Froyd --- diff --git a/target-arm/helper.c b/target-arm/helper.c index 292578235b1..9ba2f4fe15e 100644 --- a/target-arm/helper.c +++ b/target-arm/helper.c @@ -2560,7 +2560,7 @@ ftype VFP_HELPER(to##name, p)(ftype x, uint32_t shift, CPUState *env) \ return ftype##_zero; \ } \ tmp = ftype##_scalbn(x, shift, &env->vfp.fp_status); \ - return vfp_ito##p((itype)ftype##_to_##sign##int32_round_to_zero(tmp, \ + return vfp_ito##p(ftype##_to_##itype##_round_to_zero(tmp, \ &env->vfp.fp_status)); \ }