@@ -1023,11 +1023,10 @@ void WinEHPrepare::removeImplausibleInstructions(Function &F) {
1023
1023
void WinEHPrepare::cleanupPreparedFunclets (Function &F) {
1024
1024
// Clean-up some of the mess we made by removing useles PHI nodes, trivial
1025
1025
// branches, etc.
1026
- for (Function::iterator FI = F.begin (), FE = F.end (); FI != FE;) {
1027
- BasicBlock *BB = &*FI++;
1028
- SimplifyInstructionsInBlock (BB);
1029
- ConstantFoldTerminator (BB, /* DeleteDeadConditions=*/ true );
1030
- MergeBlockIntoPredecessor (BB);
1026
+ for (BasicBlock &BB : llvm::make_early_inc_range (F)) {
1027
+ SimplifyInstructionsInBlock (&BB);
1028
+ ConstantFoldTerminator (&BB, /* DeleteDeadConditions=*/ true );
1029
+ MergeBlockIntoPredecessor (&BB);
1031
1030
}
1032
1031
1033
1032
// We might have some unreachable blocks after cleaning up some impossible
@@ -1107,9 +1106,7 @@ AllocaInst *WinEHPrepare::insertPHILoads(PHINode *PN, Function &F) {
1107
1106
// Otherwise, we have a PHI on a terminator EHPad, and we give up and insert
1108
1107
// loads of the slot before every use.
1109
1108
DenseMap<BasicBlock *, Value *> Loads;
1110
- for (Value::use_iterator UI = PN->use_begin (), UE = PN->use_end ();
1111
- UI != UE;) {
1112
- Use &U = *UI++;
1109
+ for (Use &U : llvm::make_early_inc_range (PN->uses ())) {
1113
1110
auto *UsingInst = cast<Instruction>(U.getUser ());
1114
1111
if (isa<PHINode>(UsingInst) && UsingInst->getParent ()->isEHPad ()) {
1115
1112
// Use is on an EH pad phi. Leave it alone; we'll insert loads and
0 commit comments