]> granicus.if.org Git - llvm/commitdiff
[StructurizeCFG] Use a for-each loop instead of iterators in runOnRegion.
authorJustin Lebar <jlebar@google.com>
Tue, 22 Nov 2016 23:13:37 +0000 (23:13 +0000)
committerJustin Lebar <jlebar@google.com>
Tue, 22 Nov 2016 23:13:37 +0000 (23:13 +0000)
Summary:

Reviewers: arsenm

Subscribers: wdng, llvm-commits

Differential Revision: https://reviews.llvm.org/D26993

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287717 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/StructurizeCFG.cpp

index 57c1997863c398660ce9468e8e38a388e3bb8829..6232bef8079e33d60215980e147c342bd10712f6 100644 (file)
@@ -939,12 +939,11 @@ bool StructurizeCFG::runOnRegion(Region *R, RGPassManager &RGM) {
       // sub-regions are treated more cleverly, indirect children are not
       // marked as uniform.
       MDNode *MD = MDNode::get(R->getEntry()->getParent()->getContext(), {});
-      Region::element_iterator E = R->element_end();
-      for (Region::element_iterator I = R->element_begin(); I != E; ++I) {
-        if (I->isSubRegion())
+      for (RegionNode *E : R->elements()) {
+        if (E->isSubRegion())
           continue;
 
-        if (Instruction *Term = I->getEntry()->getTerminator())
+        if (Instruction *Term = E->getEntry()->getTerminator())
           Term->setMetadata("structurizecfg.uniform", MD);
       }