diff options
author | Luke Cheeseman <luke.cheeseman@arm.com> | 2019-02-25 15:08:27 +0000 |
---|---|---|
committer | Luke Cheeseman <luke.cheeseman@arm.com> | 2019-02-25 15:08:27 +0000 |
commit | 59f77e7891f8fd321f6e148209ac6616d18a25ae (patch) | |
tree | f5f62e42c915721c1e57799996e8d744713b40b5 /llvm/lib/Target/ARM/ARMSubtarget.cpp | |
parent | 51c1f640aa41fec5893d8de9eb0300239fcd9e2b (diff) | |
download | bcm5719-llvm-59f77e7891f8fd321f6e148209ac6616d18a25ae.tar.gz bcm5719-llvm-59f77e7891f8fd321f6e148209ac6616d18a25ae.zip |
[AArch64] Add support for Cortex-A76 and Cortex-A76AE
- Add LLVM backend support for Cortex-A76 and Cortex-A76AE
- Documentation can be found at
https://developer.arm.com/products/processors/cortex-a/cortex-a76
llvm-svn: 354788
Diffstat (limited to 'llvm/lib/Target/ARM/ARMSubtarget.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMSubtarget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/ARMSubtarget.cpp b/llvm/lib/Target/ARM/ARMSubtarget.cpp index 692585ea79e..22652d6256b 100644 --- a/llvm/lib/Target/ARM/ARMSubtarget.cpp +++ b/llvm/lib/Target/ARM/ARMSubtarget.cpp @@ -284,6 +284,7 @@ void ARMSubtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) { case CortexA72: case CortexA73: case CortexA75: + case CortexA76: case CortexR4: case CortexR4F: case CortexR5: |