diff options
author | Gabor Greif <ggreif@gmail.com> | 2010-07-22 13:49:27 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2010-07-22 13:49:27 +0000 |
commit | f95eef695d35cac832dfd1ff2b2e3081f7d0e24a (patch) | |
tree | c64408e6f69e17342ce82ba3aa21feec29d63e6b /lib/Analysis/RegionInfo.cpp | |
parent | 96f1d8ebdd33b3f9bdb3b1163f36072c68599f42 (diff) |
use cascading operator-> feature
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109104 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/RegionInfo.cpp')
-rw-r--r-- | lib/Analysis/RegionInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/RegionInfo.cpp b/lib/Analysis/RegionInfo.cpp index ac0d47c22d..eb1ea88b6e 100644 --- a/lib/Analysis/RegionInfo.cpp +++ b/lib/Analysis/RegionInfo.cpp @@ -478,7 +478,7 @@ void RegionInfo::scanForRegions(Function &F, BBtoBBMap *ShortCut) { // 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); } } |