forked from OSchip/llvm-project
[mips] finish removal of unused fields in MipsInstructionSelector
r325916 missed to remove calls in constructor. llvm-svn: 325917
This commit is contained in:
parent
f49c5ce3a6
commit
a7bd36e63e
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue