- Replaces some uses of MachineFunction::iterator(MBB) with MBB->getIterator() and MachineBasicBlock::iterator(MI) with MI->getIterator(), which are simpler.
- Replaces some uses of std::prev of std::next that takes a MachineFunction or MachineBasicBlock iterator with getPrevNode and getNextNode, which are also simpler.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM