Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 31 Jul 2018 14:14:41 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r336970 - head/contrib/llvm/include/llvm/Support
Message-ID:  <201807311414.w6VEEfwd021984@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Tue Jul 31 14:14:41 2018
New Revision: 336970
URL: https://svnweb.freebsd.org/changeset/base/336970

Log:
  llvm: [ARM] Complete enumeration values for Tag_ABI_VFP_args
  
  The LLD implementation of Tag_ABI_VFP_args needs to check the rarely
  seen values of 3 (toolchain specific) and 4 compatible with both Base
  and VFP.  Add the missing enumeration values so that LLD can refer to
  them without having to use the raw numbers.
  
  Obtained from:	llvm r338373 by Peter Smith

Modified:
  head/contrib/llvm/include/llvm/Support/ARMBuildAttributes.h

Modified: head/contrib/llvm/include/llvm/Support/ARMBuildAttributes.h
==============================================================================
--- head/contrib/llvm/include/llvm/Support/ARMBuildAttributes.h	Tue Jul 31 14:12:09 2018	(r336969)
+++ head/contrib/llvm/include/llvm/Support/ARMBuildAttributes.h	Tue Jul 31 14:14:41 2018	(r336970)
@@ -213,6 +213,8 @@ enum {
   // Tag_ABI_VFP_args, (=28), uleb128
   BaseAAPCS = 0,
   HardFPAAPCS = 1,
+  ToolChainFPPCS = 2,
+  CompatibleFPAAPCS = 3,
 
   // Tag_FP_HP_extension, (=36), uleb128
   AllowHPFP = 1, // Allow use of Half Precision FP



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