diff options
author | Charlie Turner <charlie.turner@arm.com> | 2014-11-06 14:59:30 +0000 |
---|---|---|
committer | Charlie Turner <charlie.turner@arm.com> | 2014-11-06 14:59:30 +0000 |
commit | 2919cbdb6c9782ab917131f1a8698094d0a7e6a2 (patch) | |
tree | eab8c564ab990759f9c4dbcef393388572698b12 /clang/lib/Basic/Targets.cpp | |
parent | ae4236ac6aca3020c5ffdbce5d2b1d9ef3597d53 (diff) | |
download | bcm5719-llvm-2919cbdb6c9782ab917131f1a8698094d0a7e6a2.tar.gz bcm5719-llvm-2919cbdb6c9782ab917131f1a8698094d0a7e6a2.zip |
Remove references to the cortex-a9-mp CPU.
This CPU definition is redundant. The Cortex-A9 is defined as
supporting multiprocessing extensions. Remove references to this CPU.
This CPU was recently removed from LLVM. See http://reviews.llvm.org/D6057
Change-Id: I62ae7cc656fcae54fbaefc4b6976e77e694a8678
llvm-svn: 221458
Diffstat (limited to 'clang/lib/Basic/Targets.cpp')
-rw-r--r-- | clang/lib/Basic/Targets.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/clang/lib/Basic/Targets.cpp b/clang/lib/Basic/Targets.cpp index 653f689a5b6..2f343040890 100644 --- a/clang/lib/Basic/Targets.cpp +++ b/clang/lib/Basic/Targets.cpp @@ -3835,8 +3835,7 @@ public: StringRef ArchName = getTriple().getArchName(); if (CPU == "arm1136jf-s" || CPU == "arm1176jzf-s" || CPU == "mpcore") Features["vfp2"] = true; - else if (CPU == "cortex-a8" || CPU == "cortex-a9" || - CPU == "cortex-a9-mp") { + else if (CPU == "cortex-a8" || CPU == "cortex-a9") { Features["vfp3"] = true; Features["neon"] = true; } @@ -3965,7 +3964,7 @@ public: .Cases("arm1176jz-s", "arm1176jzf-s", "6ZK") .Cases("arm1136jf-s", "mpcorenovfp", "mpcore", "6K") .Cases("arm1156t2-s", "arm1156t2f-s", "6T2") - .Cases("cortex-a5", "cortex-a7", "cortex-a8", "cortex-a9-mp", "7A") + .Cases("cortex-a5", "cortex-a7", "cortex-a8", "7A") .Cases("cortex-a9", "cortex-a12", "cortex-a15", "cortex-a17", "krait", "7A") .Cases("cortex-r4", "cortex-r5", "7R") .Case("swift", "7S") |