[PATCH] D122003: Add support for more archs in `Triple::getArchTypeForLLVMName`
Renato Golin via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 6 02:44:32 PDT 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG060ff6633708: Add support for more archs in `Triple::getArchTypeForLLVMName` (authored by antoniofrighetto, committed by rengolin).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D122003/new/
https://reviews.llvm.org/D122003
Files:
llvm/lib/Support/Triple.cpp
Index: llvm/lib/Support/Triple.cpp
===================================================================
--- llvm/lib/Support/Triple.cpp
+++ llvm/lib/Support/Triple.cpp
@@ -337,12 +337,14 @@
.Case("sparc", sparc)
.Case("sparcel", sparcel)
.Case("sparcv9", sparcv9)
+ .Case("s390x", systemz)
.Case("systemz", systemz)
.Case("tce", tce)
.Case("tcele", tcele)
.Case("thumb", thumb)
.Case("thumbeb", thumbeb)
.Case("x86", x86)
+ .Case("i386", x86)
.Case("x86-64", x86_64)
.Case("xcore", xcore)
.Case("nvptx", nvptx)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D122003.420760.patch
Type: text/x-patch
Size: 576 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220406/47280bb4/attachment.bin>
More information about the llvm-commits
mailing list