diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2015-01-19 12:37:33 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2015-01-19 12:37:33 +0000 |
commit | 62975f55c8baff1aff8ad9ceb55814b90602afb4 (patch) | |
tree | 78191d54d0d26aa17aa86225e50de9ac355a2b01 /polly/lib/Support/ScopHelper.cpp | |
parent | d450056c781d37a48ebc788af09d2465bafb9f88 (diff) | |
download | bcm5719-llvm-62975f55c8baff1aff8ad9ceb55814b90602afb4.tar.gz bcm5719-llvm-62975f55c8baff1aff8ad9ceb55814b90602afb4.zip |
[PM] Update Polly for LLVM r226459 which removed another pass argument
from an API in the process of preparing for the new pass manager.
llvm-svn: 226460
Diffstat (limited to 'polly/lib/Support/ScopHelper.cpp')
-rw-r--r-- | polly/lib/Support/ScopHelper.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/polly/lib/Support/ScopHelper.cpp b/polly/lib/Support/ScopHelper.cpp index bf6ad07e26b..52e673357ae 100644 --- a/polly/lib/Support/ScopHelper.cpp +++ b/polly/lib/Support/ScopHelper.cpp @@ -115,13 +115,13 @@ BasicBlock *polly::simplifyRegion(Scop *S, Pass *P) { BasicBlock *OldEntry = R->getEntry(); BasicBlock *NewEntry = nullptr; + auto *DTWP = P->getAnalysisIfAvailable<DominatorTreeWrapperPass>(); + auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; + auto *LIWP = P->getAnalysisIfAvailable<LoopInfoWrapperPass>(); + auto *LI = LIWP ? &LIWP->getLoopInfo() : nullptr; + // Create single entry edge if the region has multiple entry edges. if (!EnteringBB) { - auto *DTWP = P->getAnalysisIfAvailable<DominatorTreeWrapperPass>(); - auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; - auto *LIWP = P->getAnalysisIfAvailable<LoopInfoWrapperPass>(); - auto *LI = LIWP ? &LIWP->getLoopInfo() : nullptr; - NewEntry = SplitBlock(OldEntry, OldEntry->begin(), DT, LI); EnteringBB = OldEntry; } @@ -129,7 +129,7 @@ BasicBlock *polly::simplifyRegion(Scop *S, Pass *P) { // Create an unconditional entry edge. if (EnteringBB->getTerminator()->getNumSuccessors() != 1) { BasicBlock *EntryBB = NewEntry ? NewEntry : OldEntry; - BasicBlock *SplitEdgeBB = SplitEdge(EnteringBB, EntryBB, P); + BasicBlock *SplitEdgeBB = SplitEdge(EnteringBB, EntryBB, DT, LI); // Once the edge between EnteringBB and EntryBB is split, two cases arise. // The first is simple. The new block is inserted between EnteringBB and |