summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
diff options
context:
space:
mode:
authorTim Northover <tnorthover@apple.com>2014-07-23 12:58:11 +0000
committerTim Northover <tnorthover@apple.com>2014-07-23 12:58:11 +0000
commit35910d7fa85a67ffc38e9903bb256bc3d394d9b8 (patch)
treec7cc385b65e859498143332f739f4417fca0f466 /llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
parent18b7512faab02a8d23c28867e3ac355ff2e42aec (diff)
downloadbcm5719-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/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp')
-rw-r--r--llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp b/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
index 94b34a541c3..1fee256c72c 100644
--- a/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
+++ b/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
@@ -14,17 +14,14 @@ using namespace llvm;
namespace llvm {
Target TheAArch64leTarget;
Target TheAArch64beTarget;
-Target TheARM64leTarget;
-Target TheARM64beTarget;
+Target TheARM64Target;
} // end namespace llvm
extern "C" void LLVMInitializeAArch64TargetInfo() {
// Now register the "arm64" name for use with "-march". We don't want it to
// take possession of the Triple::aarch64 tag though.
RegisterTarget<Triple::UnknownArch, /*HasJIT=*/true> X(
- TheARM64leTarget, "arm64", "ARM64 (little endian)");
- RegisterTarget<Triple::UnknownArch, /*HasJIT=*/true> Y(
- TheARM64beTarget, "arm64_be", "ARM64 (big endian)");
+ TheARM64Target, "arm64", "ARM64 (little endian)");
RegisterTarget<Triple::aarch64, /*HasJIT=*/true> Z(
TheAArch64leTarget, "aarch64", "AArch64 (little endian)");
OpenPOWER on IntegriCloud