diff options
author | Oliver Stannard <oliver.stannard@arm.com> | 2015-12-01 10:33:56 +0000 |
---|---|---|
committer | Oliver Stannard <oliver.stannard@arm.com> | 2015-12-01 10:33:56 +0000 |
commit | 4667071574cb396fbe09aedd14ea75366f64f168 (patch) | |
tree | dd03cffac8c5089d1e2aff81909f441534f4e735 /llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp | |
parent | 8addbf4350a78e767c28533130a56bc23dbd9465 (diff) | |
download | bcm5719-llvm-4667071574cb396fbe09aedd14ea75366f64f168.tar.gz bcm5719-llvm-4667071574cb396fbe09aedd14ea75366f64f168.zip |
[ARM] Add ARMv8.2-A to TargetParser
Add ARMv8.2-A to TargetParser, so that it can be used by the clang
command-line options and the .arch directive.
Most testing of this will be done in clang, checking that the
command-line options that this enables work.
Differential Revision: http://reviews.llvm.org/D15037
llvm-svn: 254400
Diffstat (limited to 'llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp index ba144458386..8341fbc4efd 100644 --- a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp +++ b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp @@ -9930,6 +9930,7 @@ static const struct { { ARM::AEK_SEC, Feature_HasV6K, {ARM::FeatureTrustZone} }, // FIXME: Only available in A-class, isel not predicated { ARM::AEK_VIRT, Feature_HasV7, {ARM::FeatureVirtualization} }, + { ARM::AEK_FP16, Feature_HasV8_2a, {ARM::FeatureFPARMv8, ARM::FeatureFullFP16} }, // FIXME: Unsupported extensions. { ARM::AEK_OS, Feature_None, {} }, { ARM::AEK_IWMMXT, Feature_None, {} }, |