Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 15 Dec 2012 21:12:14 +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: r244274 - head/contrib/binutils/gas/config
Message-ID:  <201212152112.qBFLCEVo038354@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: andrew
Date: Sat Dec 15 21:12:13 2012
New Revision: 244274
URL: http://svnweb.freebsd.org/changeset/base/244274

Log:
  Recognise vfpv2 as a value for the ARM .fpu asm directive. Clang generates
  these even when building soft floating-point code
  
  Submitted by:	Daisuke Aoyama <aoyama AT peach.ne.jp>

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	Sat Dec 15 21:06:14 2012	(r244273)
+++ head/contrib/binutils/gas/config/tc-arm.c	Sat Dec 15 21:12:13 2012	(r244274)
@@ -20107,6 +20107,7 @@ static const struct arm_option_cpu_value
   {"softvfp",		FPU_ARCH_VFP},
   {"softvfp+vfp",	FPU_ARCH_VFP_V2},
   {"vfp",		FPU_ARCH_VFP_V2},
+  {"vfpv2",		FPU_ARCH_VFP_V2},
   {"vfp9",		FPU_ARCH_VFP_V2},
   {"vfp3",              FPU_ARCH_VFP_V3},
   {"vfpv3",             FPU_ARCH_VFP_V3},



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