CodeGen: Remove a few more ilist iterator implicit conversions, NFC

llvm-svn: 249875
This commit is contained in:
Duncan P. N. Exon Smith
2015-10-09 18:44:40 +00:00
parent 2c9978b12b
commit d83547a16e
4 changed files with 53 additions and 45 deletions

View File

@@ -147,7 +147,7 @@ void VLIWPacketizerList::endPacket(MachineBasicBlock *MBB,
MachineInstr *MI) {
if (CurrentPacketMIs.size() > 1) {
MachineInstr *MIFirst = CurrentPacketMIs.front();
finalizeBundle(*MBB, MIFirst, MI);
finalizeBundle(*MBB, MIFirst->getIterator(), MI->getIterator());
}
CurrentPacketMIs.clear();
ResourceTracker->clearResources();