Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 20 Oct 2013 15:13:33 +0000 (UTC)
From:      Andrew Turner <andrew@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r256790 - head/contrib/binutils/gas/config
Message-ID:  <201310201513.r9KFDXMw082572@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: andrew
Date: Sun Oct 20 15:13:32 2013
New Revision: 256790
URL: http://svnweb.freebsd.org/changeset/base/256790

Log:
  Merge from projects/arm_eabi_vfp r255380:
  
  Fix the VCVT instruction. It must round towards zero when converting from
  a floating-point to an integer value. This was not the case causing issues
  when printing certain values.
  
  There is a VCVTR instruction that will round depending on the current
  rounding mode. We don't yet support this instruction, or setting the
  rounding mode.

Modified:
  head/contrib/binutils/gas/config/tc-arm.c

Modified: head/contrib/binutils/gas/config/tc-arm.c
==============================================================================
--- head/contrib/binutils/gas/config/tc-arm.c	Sun Oct 20 14:52:14 2013	(r256789)
+++ head/contrib/binutils/gas/config/tc-arm.c	Sun Oct 20 15:13:32 2013	(r256790)
@@ -12660,14 +12660,14 @@ do_vfp_nsyn_cvt (enum neon_shape rs, int
       /* Conversions without bitshift.  */
       const char *enc[] =
         {
-          "ftosis",
-          "ftouis",
+          "ftosizs",
+          "ftouizs",
           "fsitos",
           "fuitos",
           "fcvtsd",
           "fcvtds",
-          "ftosid",
-          "ftouid",
+          "ftosizd",
+          "ftouizd",
           "fsitod",
           "fuitod"
         };



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310201513.r9KFDXMw082572>