[AVR] Use references rather than pointers in AVRISelLowering

llvm-svn: 283636
This commit is contained in:
Dylan McKay 2016-10-08 01:06:21 +00:00
parent 12109e7314
commit a1a944e3cb
1 changed files with 2 additions and 2 deletions

View File

@ -154,8 +154,8 @@ private:
SmallVectorImpl<SDValue> &InVals) const;
private:
MachineBasicBlock *insertShift(MachineInstr *MI, MachineBasicBlock *BB) const;
MachineBasicBlock *insertMul(MachineInstr *MI, MachineBasicBlock *BB) const;
MachineBasicBlock *insertShift(MachineInstr &MI, MachineBasicBlock *BB) const;
MachineBasicBlock *insertMul(MachineInstr &MI, MachineBasicBlock *BB) const;
};
} // end namespace llvm