diff options
author | Petar Jovanovic <petar.jovanovic@mips.com> | 2018-02-23 15:47:05 +0000 |
---|---|---|
committer | Petar Jovanovic <petar.jovanovic@mips.com> | 2018-02-23 15:47:05 +0000 |
commit | a7bd36e63e4afd111fca01be1f9314e3e81bb643 (patch) | |
tree | 983e268511dd4e959ef7a22954430ccbbd536140 | |
parent | f49c5ce3a68bb89f55a24cc033e7afb70a6e1fd3 (diff) | |
download | bcm5719-llvm-a7bd36e63e4afd111fca01be1f9314e3e81bb643.tar.gz bcm5719-llvm-a7bd36e63e4afd111fca01be1f9314e3e81bb643.zip |
[mips] finish removal of unused fields in MipsInstructionSelector
r325916 missed to remove calls in constructor.
llvm-svn: 325917
-rw-r--r-- | llvm/lib/Target/Mips/MipsInstructionSelector.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/Mips/MipsInstructionSelector.cpp b/llvm/lib/Target/Mips/MipsInstructionSelector.cpp index 27d01aadfd5..3df552d54a8 100644 --- a/llvm/lib/Target/Mips/MipsInstructionSelector.cpp +++ b/llvm/lib/Target/Mips/MipsInstructionSelector.cpp @@ -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 { |