summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/Mips/MipsInstructionSelector.cpp
diff options
context:
space:
mode:
authorPetar Jovanovic <petar.jovanovic@mips.com>2018-02-23 15:47:05 +0000
committerPetar Jovanovic <petar.jovanovic@mips.com>2018-02-23 15:47:05 +0000
commita7bd36e63e4afd111fca01be1f9314e3e81bb643 (patch)
tree983e268511dd4e959ef7a22954430ccbbd536140 /llvm/lib/Target/Mips/MipsInstructionSelector.cpp
parentf49c5ce3a68bb89f55a24cc033e7afb70a6e1fd3 (diff)
downloadbcm5719-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
Diffstat (limited to 'llvm/lib/Target/Mips/MipsInstructionSelector.cpp')
-rw-r--r--llvm/lib/Target/Mips/MipsInstructionSelector.cpp4
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 {
OpenPOWER on IntegriCloud