Unify these two lines.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212152 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2014-07-02 01:02:28 +00:00
parent b40edb9a1b
commit 110493f99d

View File

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