diff options
author | Renato Golin <renato.golin@linaro.org> | 2014-10-13 10:22:19 +0000 |
---|---|---|
committer | Renato Golin <renato.golin@linaro.org> | 2014-10-13 10:22:19 +0000 |
commit | 16ea8ba3bcd99d86b5bff5d410deac2e3517eb4a (patch) | |
tree | b37539306738000c3ebcd134038cb3e3d9cd45cd /llvm/lib/Target/ARM/ARMSubtarget.h | |
parent | 642daf0c0c5630f34b72bd4362839389b36ff00c (diff) | |
download | bcm5719-llvm-16ea8ba3bcd99d86b5bff5d410deac2e3517eb4a.tar.gz bcm5719-llvm-16ea8ba3bcd99d86b5bff5d410deac2e3517eb4a.zip |
Adds support for the Cortex-A17 to the ARM backend
Patch by Matthew Wahab.
llvm-svn: 219606
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 8c85ad73ac7..12899f99765 100644 --- a/llvm/lib/Target/ARM/ARMSubtarget.h +++ b/llvm/lib/Target/ARM/ARMSubtarget.h @@ -42,7 +42,7 @@ class ARMSubtarget : public ARMGenSubtargetInfo { protected: enum ARMProcFamilyEnum { Others, CortexA5, CortexA7, CortexA8, CortexA9, CortexA12, CortexA15, - CortexR5, Swift, CortexA53, CortexA57, Krait + CortexA17, CortexR5, Swift, CortexA53, CortexA57, Krait, }; enum ARMProcClassEnum { None, AClass, RClass, MClass |