diff options
author | Tim Northover <tnorthover@apple.com> | 2014-07-23 12:58:11 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2014-07-23 12:58:11 +0000 |
commit | 35910d7fa85a67ffc38e9903bb256bc3d394d9b8 (patch) | |
tree | c7cc385b65e859498143332f739f4417fca0f466 /llvm/lib/Support/Triple.cpp | |
parent | 18b7512faab02a8d23c28867e3ac355ff2e42aec (diff) | |
download | bcm5719-llvm-35910d7fa85a67ffc38e9903bb256bc3d394d9b8.tar.gz bcm5719-llvm-35910d7fa85a67ffc38e9903bb256bc3d394d9b8.zip |
AArch64: remove "arm64_be" support in favour of "aarch64_be".
There really is no arm64_be: it was a useful fiction to test big-endian support
while both backends existed in parallel, but now the only platform that uses
the name (iOS) doesn't have a big-endian variant, let alone one called
"arm64_be".
llvm-svn: 213748
Diffstat (limited to 'llvm/lib/Support/Triple.cpp')
-rw-r--r-- | llvm/lib/Support/Triple.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Support/Triple.cpp b/llvm/lib/Support/Triple.cpp index ec39fd6e748..57d6d2b3cf6 100644 --- a/llvm/lib/Support/Triple.cpp +++ b/llvm/lib/Support/Triple.cpp @@ -178,7 +178,6 @@ Triple::ArchType Triple::getArchTypeForLLVMName(StringRef Name) { .Case("aarch64", aarch64) .Case("aarch64_be", aarch64_be) .Case("arm64", aarch64) // "arm64" is an alias for "aarch64" - .Case("arm64_be", aarch64_be) // "arm64_be" is an alias for "aarch64_be" .Case("arm", arm) .Case("armeb", armeb) .Case("mips", mips) @@ -251,7 +250,6 @@ static Triple::ArchType parseArch(StringRef ArchName) { .Case("aarch64", Triple::aarch64) .Case("aarch64_be", Triple::aarch64_be) .Case("arm64", Triple::aarch64) - .Case("arm64_be", Triple::aarch64_be) .Cases("arm", "xscale", Triple::arm) // FIXME: It would be good to replace these with explicit names for all the // various suffixes supported. |