From owner-svn-src-head@FreeBSD.ORG Sat Dec 15 21:12:14 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ADCA1FD3; Sat, 15 Dec 2012 21:12:14 +0000 (UTC) (envelope-from andrew@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 92AD28FC16; Sat, 15 Dec 2012 21:12:14 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBFLCETl038355; Sat, 15 Dec 2012 21:12:14 GMT (envelope-from andrew@svn.freebsd.org) Received: (from andrew@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBFLCEVo038354; Sat, 15 Dec 2012 21:12:14 GMT (envelope-from andrew@svn.freebsd.org) Message-Id: <201212152112.qBFLCEVo038354@svn.freebsd.org> From: Andrew Turner Date: Sat, 15 Dec 2012 21:12:14 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r244274 - head/contrib/binutils/gas/config X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Dec 2012 21:12:14 -0000 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 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},