diff options
author | Bob Wilson <bob.wilson@apple.com> | 2011-04-19 18:11:52 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2011-04-19 18:11:52 +0000 |
commit | d04a83f8f28b5cb489ed9bf9ebffdf2762f0eabc (patch) | |
tree | b19be138fa7f1b31a84a05606313f6d69739559c /llvm/lib/Target/ARM | |
parent | a2881ee8a436d0b64adfc4d10852921b9b9ae732 (diff) | |
download | bcm5719-llvm-d04a83f8f28b5cb489ed9bf9ebffdf2762f0eabc.tar.gz bcm5719-llvm-d04a83f8f28b5cb489ed9bf9ebffdf2762f0eabc.zip |
Add -mcpu=cortex-a9-mp. It's cortex-a9 with MP extension. rdar://8648637.
llvm-svn: 129774
Diffstat (limited to 'llvm/lib/Target/ARM')
-rw-r--r-- | llvm/lib/Target/ARM/ARM.td | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/ARM.td b/llvm/lib/Target/ARM/ARM.td index 133af31a388..745d31dcd0f 100644 --- a/llvm/lib/Target/ARM/ARM.td +++ b/llvm/lib/Target/ARM/ARM.td @@ -187,6 +187,8 @@ def : Processor<"cortex-a8", CortexA8Itineraries, [ArchV7A, ProcA8]>; def : Processor<"cortex-a9", CortexA9Itineraries, [ArchV7A, ProcA9]>; +def : Processor<"cortex-a9-mp", CortexA9Itineraries, + [ArchV7A, ProcA9, FeatureMP]>; // V7M Processors. def : ProcNoItin<"cortex-m3", [ArchV7M]>; |