Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 18 May 2014 19:28:15 +0000 (UTC)
From:      Ian Lepore <ian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r266414 - stable/10/contrib/binutils/gas/config
Message-ID:  <201405181928.s4IJSF0j034586@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ian
Date: Sun May 18 19:28:15 2014
New Revision: 266414
URL: http://svnweb.freebsd.org/changeset/base/266414

Log:
  MFC r256790:
  
    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.

Modified:
  stable/10/contrib/binutils/gas/config/tc-arm.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/contrib/binutils/gas/config/tc-arm.c
==============================================================================
--- stable/10/contrib/binutils/gas/config/tc-arm.c	Sun May 18 17:58:33 2014	(r266413)
+++ stable/10/contrib/binutils/gas/config/tc-arm.c	Sun May 18 19:28:15 2014	(r266414)
@@ -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?201405181928.s4IJSF0j034586>