[PATCH] Fix the prefix for arm64 triple
Yi Kong
kongy.dev at gmail.com
Thu Jul 17 02:52:08 PDT 2014
Closed by commit rL213240 (authored by @kongyi).
REPOSITORY
rL LLVM
http://reviews.llvm.org/D4516
Files:
llvm/trunk/lib/Support/Triple.cpp
Index: llvm/trunk/lib/Support/Triple.cpp
===================================================================
--- llvm/trunk/lib/Support/Triple.cpp
+++ llvm/trunk/lib/Support/Triple.cpp
@@ -61,17 +61,16 @@
default:
return nullptr;
+ case arm64:
+ case arm64_be:
case aarch64:
case aarch64_be: return "aarch64";
case arm:
case armeb:
case thumb:
case thumbeb: return "arm";
- case arm64:
- case arm64_be: return "arm64";
-
case ppc64:
case ppc64le:
case ppc: return "ppc";
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D4516.11562.patch
Type: text/x-patch
Size: 539 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20140717/f49b9158/attachment.bin>
More information about the llvm-commits
mailing list