diff options
author | Pete Cooper <peter_cooper@apple.com> | 2015-08-06 20:22:46 +0000 |
---|---|---|
committer | Pete Cooper <peter_cooper@apple.com> | 2015-08-06 20:22:46 +0000 |
commit | ebcd748927d45be39b2690acab7038a003bdb17f (patch) | |
tree | 756d58fbf5490c49cb38afdea5767454c1cb548a /llvm/lib/Target/PowerPC/PPCFastISel.cpp | |
parent | b9583d22eb8dee3b7d6a299ffb54959d77ad52b4 (diff) | |
download | bcm5719-llvm-ebcd748927d45be39b2690acab7038a003bdb17f.tar.gz bcm5719-llvm-ebcd748927d45be39b2690acab7038a003bdb17f.zip |
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/Target/PowerPC/PPCFastISel.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCFastISel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCFastISel.cpp b/llvm/lib/Target/PowerPC/PPCFastISel.cpp index 700df20f8aa..7ca6576472c 100644 --- a/llvm/lib/Target/PowerPC/PPCFastISel.cpp +++ b/llvm/lib/Target/PowerPC/PPCFastISel.cpp @@ -1759,8 +1759,8 @@ bool PPCFastISel::SelectIndirectBr(const Instruction *I) { BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(PPC::BCTR8)); const IndirectBrInst *IB = cast<IndirectBrInst>(I); - for (unsigned i = 0, e = IB->getNumSuccessors(); i != e; ++i) - FuncInfo.MBB->addSuccessor(FuncInfo.MBBMap[IB->getSuccessor(i)]); + for (const BasicBlock *SuccBB : IB->successors()) + FuncInfo.MBB->addSuccessor(FuncInfo.MBBMap[SuccBB]); return true; } |