It is not necessary to search for mipsallegrex in target triple string.

llvm-svn: 139607
This commit is contained in:
Akira Hatanaka 2011-09-13 17:35:28 +00:00
parent c3c60a0882
commit b0e99ef8f0
1 changed files with 1 additions and 2 deletions

View File

@ -66,8 +66,7 @@ static MCCodeGenInfo *createMipsMCCodeGenInfo(StringRef TT, Reloc::Model RM,
MCCodeGenInfo *X = new MCCodeGenInfo();
if (RM == Reloc::Default) {
// Abicall enables PIC by default
if (TT.find("mipsallegrex") != std::string::npos ||
TT.find("psp") != std::string::npos)
if (TT.find("psp") != std::string::npos)
RM = Reloc::Static;
else
RM = Reloc::PIC_;