From: Eric Christopher Date: Wed, 2 Jul 2014 01:02:28 +0000 (+0000) Subject: Unify these two lines. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=110493f99dfbfb34d8660e48268fd438f04d6ab9;p=oota-llvm.git Unify these two lines. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212152 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/Mips/MipsSubtarget.cpp b/lib/Target/Mips/MipsSubtarget.cpp index 721c4f26da7..f89f0e24d00 100644 --- a/lib/Target/Mips/MipsSubtarget.cpp +++ b/lib/Target/Mips/MipsSubtarget.cpp @@ -86,8 +86,7 @@ MipsSubtarget::MipsSubtarget(const std::string &TT, const std::string &CPU, InMicroMipsMode(false), HasDSP(false), HasDSPR2(false), AllowMixed16_32(Mixed16_32 | Mips_Os16), Os16(Mips_Os16), HasMSA(false), RM(_RM), OverrideMode(NoOverride), TM(_TM), TargetTriple(TT), JITInfo() { - std::string CPUName = CPU; - CPUName = selectMipsCPU(TT, CPUName); + std::string CPUName = selectMipsCPU(TT, CPU); // Parse features string. ParseSubtargetFeatures(CPUName, FS);