From: Richard Osborne Date: Mon, 31 Aug 2009 21:51:36 +0000 (+0000) Subject: Add triple parsing support for XCore. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=768f1dd48fbc1582213271f2698a0328d03d4d7e;p=oota-llvm.git 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 c4792e3efd8..8b482473a50 100644 --- a/lib/Support/Triple.cpp +++ b/lib/Support/Triple.cpp @@ -186,6 +186,8 @@ void Triple::Parse() const { Arch = systemz; else if (ArchName == "tce") Arch = tce; + else if (ArchName == "xcore") + Arch = xcore; else Arch = UnknownArch;