From: Joerg Sonnenberger Date: Thu, 7 Jul 2011 16:53:52 +0000 (+0000) Subject: Recognize mipseb as alias for mips for symmetry with mipsel. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=f86b76ead71649c58d34e625416008b4fec95eb8 Recognize mipseb as alias for mips for symmetry with mipsel. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134617 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/Triple.cpp b/lib/Support/Triple.cpp index 6247a8f1da6..7e094ee78f3 100644 --- a/lib/Support/Triple.cpp +++ b/lib/Support/Triple.cpp @@ -282,7 +282,8 @@ Triple::ArchType Triple::ParseArch(StringRef ArchName) { return cellspu; else if (ArchName == "msp430") return msp430; - else if (ArchName == "mips" || ArchName == "mipsallegrex") + else if (ArchName == "mips" || ArchName == "mipseb" || + ArchName == "mipsallegrex") return mips; else if (ArchName == "mipsel" || ArchName == "mipsallegrexel" || ArchName == "psp")