aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
diff options
context:
space:
mode:
authorPete Cooper <peter_cooper@apple.com>2015-08-06 20:22:46 +0000
committerPete Cooper <peter_cooper@apple.com>2015-08-06 20:22:46 +0000
commitebcd748927d45be39b2690acab7038a003bdb17f (patch)
tree756d58fbf5490c49cb38afdea5767454c1cb548a /llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
parentb9583d22eb8dee3b7d6a299ffb54959d77ad52b4 (diff)
downloadllvm-ebcd748927d45be39b2690acab7038a003bdb17f.zip
llvm-ebcd748927d45be39b2690acab7038a003bdb17f.tar.gz
llvm-ebcd748927d45be39b2690acab7038a003bdb17f.tar.bz2
Convert a bunch of loops to foreach. NFC.
After r244074, we now have a successors() method to iterate over all the successors of a TerminatorInst. This commit changes a bunch of eligible loops to use it. llvm-svn: 244260
Diffstat (limited to 'llvm/lib/Transforms/InstCombine/InstructionCombining.cpp')
-rw-r--r--llvm/lib/Transforms/InstCombine/InstructionCombining.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp b/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
index d04ae07..45994d1 100644
--- a/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
+++ b/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
@@ -2927,8 +2927,8 @@ static bool AddReachableCodeToWorklist(BasicBlock *BB, const DataLayout &DL,
}
}
- for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
- Worklist.push_back(TI->getSuccessor(i));
+ for (BasicBlock *SuccBB : TI->successors())
+ Worklist.push_back(SuccBB);
} while (!Worklist.empty());
// Once we've found all of the instructions to add to instcombine's worklist,