[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

llvm-svn: 287717

llvm/lib/Transforms/Scalar/StructurizeCFG.cpp

index 57c1997..6232bef 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);
       }