commit | f95eef695d35cac832dfd1ff2b2e3081f7d0e24a | [log] [tgz] |
---|---|---|
author | Gabor Greif <ggreif@gmail.com> | Thu Jul 22 13:49:27 2010 +0000 |
committer | Gabor Greif <ggreif@gmail.com> | Thu Jul 22 13:49:27 2010 +0000 |
tree | c64408e6f69e17342ce82ba3aa21feec29d63e6b | |
parent | 96f1d8ebdd33b3f9bdb3b1163f36072c68599f42 [diff] [blame] |
use cascading operator-> feature git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109104 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/RegionInfo.cpp b/lib/Analysis/RegionInfo.cpp index ac0d47c..eb1ea88 100644 --- a/lib/Analysis/RegionInfo.cpp +++ b/lib/Analysis/RegionInfo.cpp
@@ -478,7 +478,7 @@ // over the small regions. for (po_iterator<DomTreeNode*> FI = po_begin(N), FE = po_end(N); FI != FE; ++FI) { - findRegionsWithEntry((*FI)->getBlock(), ShortCut); + findRegionsWithEntry(FI->getBlock(), ShortCut); } }