Support for PSP is gone too.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139622 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp b/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
index 4d12046..26f34f4 100644
--- a/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
+++ b/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
@@ -64,13 +64,8 @@
 static MCCodeGenInfo *createMipsMCCodeGenInfo(StringRef TT, Reloc::Model RM,
                                               CodeModel::Model CM) {
   MCCodeGenInfo *X = new MCCodeGenInfo();
-  if (RM == Reloc::Default) {
-    // Abicall enables PIC by default
-    if (TT.find("psp") != std::string::npos)
-      RM = Reloc::Static;
-    else
-      RM = Reloc::PIC_;
-  }
+  if (RM == Reloc::Default)
+    RM = Reloc::PIC_;
   X->InitMCCodeGenInfo(RM, CM);
   return X;
 }