diff options
author | Bradley Smith <bradley.smith@arm.com> | 2013-11-12 10:38:05 +0000 |
---|---|---|
committer | Bradley Smith <bradley.smith@arm.com> | 2013-11-12 10:38:05 +0000 |
commit | 2ca352d027da26194deaa77ebc486df159e51c28 (patch) | |
tree | 6811b05b17fde71e7a9daf2f92b91341c945b210 /lib/Target/ARM/ARMBuildAttrs.h | |
parent | aee7825762830536956b9e634fd7ffd59396984d (diff) | |
download | external_llvm-2ca352d027da26194deaa77ebc486df159e51c28.tar.gz external_llvm-2ca352d027da26194deaa77ebc486df159e51c28.tar.bz2 external_llvm-2ca352d027da26194deaa77ebc486df159e51c28.zip |
[ARM] Add support for FP_HP_extension build attribute
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194470 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMBuildAttrs.h')
-rw-r--r-- | lib/Target/ARM/ARMBuildAttrs.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMBuildAttrs.h b/lib/Target/ARM/ARMBuildAttrs.h index eb0c9ede97..b16d4ef54b 100644 --- a/lib/Target/ARM/ARMBuildAttrs.h +++ b/lib/Target/ARM/ARMBuildAttrs.h @@ -59,7 +59,7 @@ namespace ARMBuildAttrs { ABI_FP_optimization_goals = 31, compatibility = 32, CPU_unaligned_access = 34, - VFP_HP_extension = 36, + FP_HP_extension = 36, ABI_FP_16bit_format = 38, MPextension_use = 42, // was 70, 2.08 ABI DIV_use = 44, @@ -146,6 +146,9 @@ namespace ARMBuildAttrs { BaseAAPCS = 0, HardFPAAPCS = 1, + // Tag_FP_HP_extension, (=36), uleb128 + AllowHPFP = 1, // Allow use of Half Precision FP + // Tag_MPextension_use, (=42), uleb128 AllowMP = 1, // Allow use of MP extensions |