[mips] finish removal of unused fields in MipsInstructionSelector
authorPetar Jovanovic <petar.jovanovic@mips.com>
Fri, 23 Feb 2018 15:47:05 +0000 (15:47 +0000)
committerPetar Jovanovic <petar.jovanovic@mips.com>
Fri, 23 Feb 2018 15:47:05 +0000 (15:47 +0000)
r325916 missed to remove calls in constructor.

llvm-svn: 325917

llvm/lib/Target/Mips/MipsInstructionSelector.cpp

index 27d01aa..3df552d 100644 (file)
@@ -38,8 +38,8 @@ private:
 MipsInstructionSelector::MipsInstructionSelector(
     const MipsTargetMachine &TM, const MipsSubtarget &STI,
     const MipsRegisterBankInfo &RBI)
-    : InstructionSelector(), TM(TM), STI(STI), TII(*STI.getInstrInfo()),
-      TRI(*STI.getRegisterInfo()), RBI(RBI) {}
+    : InstructionSelector(), TII(*STI.getInstrInfo()),
+      TRI(*STI.getRegisterInfo()) {}
 
 bool MipsInstructionSelector::select(MachineInstr &I,
                                      CodeGenCoverage &CoverageInfo) const {