1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Recognize mipseb as alias for mips for symmetry with mipsel.

llvm-svn: 134617
This commit is contained in:
Joerg Sonnenberger 2011-07-07 16:53:52 +00:00
parent 835c073c59
commit 69f503e99c

View File

@ -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")