commit | 0b3e9544a8c01d83bb746e80ef380e570db47be6 | [log] [tgz] |
---|---|---|
author | Richard Osborne <richard@xmos.com> | Mon Aug 31 21:51:36 2009 +0000 |
committer | Richard Osborne <richard@xmos.com> | Mon Aug 31 21:51:36 2009 +0000 |
tree | a29508b637f574847ca8eb8f9a7f0e30ff9d2d77 | |
parent | 4a47c2447110c5163806b46ee1be881adf70ce38 [diff] |
Add triple parsing support for XCore. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80629 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Support/Triple.cpp b/lib/Support/Triple.cpp index c4792e3..8b48247 100644 --- a/lib/Support/Triple.cpp +++ b/lib/Support/Triple.cpp
@@ -186,6 +186,8 @@ Arch = systemz; else if (ArchName == "tce") Arch = tce; + else if (ArchName == "xcore") + Arch = xcore; else Arch = UnknownArch;