diff options
author | Artyom Skrobov <Artyom.Skrobov@arm.com> | 2013-11-21 14:03:21 +0000 |
---|---|---|
committer | Artyom Skrobov <Artyom.Skrobov@arm.com> | 2013-11-21 14:03:21 +0000 |
commit | 468ee230eab2c6abf84b25622058d2cf321138af (patch) | |
tree | c1b9daf5b07d2d65475c51da26c4b11a0194101a /llvm/lib/Target/ARM/ARMSubtarget.h | |
parent | 63bf66816c0c110954bc05d1d8915c19ea1f57fa (diff) | |
download | bcm5719-llvm-468ee230eab2c6abf84b25622058d2cf321138af.tar.gz bcm5719-llvm-468ee230eab2c6abf84b25622058d2cf321138af.zip |
[ARM] add basic Cortex-A7 support to LLVM backend
llvm-svn: 195358
Diffstat (limited to 'llvm/lib/Target/ARM/ARMSubtarget.h')
-rw-r--r-- | llvm/lib/Target/ARM/ARMSubtarget.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMSubtarget.h b/llvm/lib/Target/ARM/ARMSubtarget.h index 5276901bbb9..5fc9f8f460b 100644 --- a/llvm/lib/Target/ARM/ARMSubtarget.h +++ b/llvm/lib/Target/ARM/ARMSubtarget.h @@ -31,7 +31,8 @@ class TargetOptions; class ARMSubtarget : public ARMGenSubtargetInfo { protected: enum ARMProcFamilyEnum { - Others, CortexA5, CortexA8, CortexA9, CortexA15, CortexR5, Swift, CortexA53, CortexA57 + Others, CortexA5, CortexA7, CortexA8, CortexA9, CortexA15, CortexR5, + Swift, CortexA53, CortexA57 }; enum ARMProcClassEnum { None, AClass, RClass, MClass |