diff options
author | Christof Douma <Christof.Douma@arm.com> | 2015-12-02 11:53:44 +0000 |
---|---|---|
committer | Christof Douma <Christof.Douma@arm.com> | 2015-12-02 11:53:44 +0000 |
commit | 8b5dc2c94ed220a929aa6734fc0e07fb0f447167 (patch) | |
tree | d19e69a8586740fbc8c174f74b060cd7b5cfc823 /llvm/lib/Target/ARM/ARMSubtarget.h | |
parent | fcf334b8243291e524cd2643c8be2575cfb9b46a (diff) | |
download | bcm5719-llvm-8b5dc2c94ed220a929aa6734fc0e07fb0f447167.tar.gz bcm5719-llvm-8b5dc2c94ed220a929aa6734fc0e07fb0f447167.zip |
[AArch64]: Add support for Cortex-A35
Adds support for the new Cortex-A35 ARMv8-A core.
llvm-svn: 254503
Diffstat (limited to 'llvm/lib/Target/ARM/ARMSubtarget.h')
-rw-r--r-- | llvm/lib/Target/ARM/ARMSubtarget.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/ARMSubtarget.h b/llvm/lib/Target/ARM/ARMSubtarget.h index 3ad35d24eba..a8b28018f1b 100644 --- a/llvm/lib/Target/ARM/ARMSubtarget.h +++ b/llvm/lib/Target/ARM/ARMSubtarget.h @@ -43,8 +43,8 @@ class ARMSubtarget : public ARMGenSubtargetInfo { protected: enum ARMProcFamilyEnum { Others, CortexA5, CortexA7, CortexA8, CortexA9, CortexA12, CortexA15, - CortexA17, CortexR4, CortexR4F, CortexR5, CortexR7, CortexA53, CortexA57, - CortexA72, Krait, Swift + CortexA17, CortexR4, CortexR4F, CortexR5, CortexR7, CortexA35, CortexA53, + CortexA57, CortexA72, Krait, Swift }; enum ARMProcClassEnum { None, AClass, RClass, MClass |