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/ARMSubtarget.h | |
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/ARMSubtarget.h')
-rw-r--r-- | llvm/lib/Target/ARM/ARMSubtarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMSubtarget.h b/llvm/lib/Target/ARM/ARMSubtarget.h index 3addd4175a0..3ad35d24eba 100644 --- a/llvm/lib/Target/ARM/ARMSubtarget.h +++ b/llvm/lib/Target/ARM/ARMSubtarget.h @@ -52,7 +52,7 @@ protected: enum ARMArchEnum { ARMv2, ARMv2a, ARMv3, ARMv3m, ARMv4, ARMv4t, ARMv5, ARMv5t, ARMv5te, ARMv5tej, ARMv6, ARMv6k, ARMv6kz, ARMv6t2, ARMv6m, ARMv6sm, ARMv7a, ARMv7r, - ARMv7m, ARMv7em, ARMv8a, ARMv81a + ARMv7m, ARMv7em, ARMv8a, ARMv81a, ARMv82a }; /// ARMProcFamily - ARM processor family: Cortex-A8, Cortex-A9, and others. |