summaryrefslogtreecommitdiffstats
path: root/polly/lib/CodeGen/LoopGenerators.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2015-01-18 10:52:23 +0000
committerChandler Carruth <chandlerc@gmail.com>2015-01-18 10:52:23 +0000
commit5ec3333d2401eaa1e9454e0eaf60d74889c01fda (patch)
tree8d1babbae4cc678e7d6c8e42c9a56aaa92d4cd5b /polly/lib/CodeGen/LoopGenerators.cpp
parentb5797b659f879474b4081c4e1a00e955c38a4dcb (diff)
downloadbcm5719-llvm-5ec3333d2401eaa1e9454e0eaf60d74889c01fda.tar.gz
bcm5719-llvm-5ec3333d2401eaa1e9454e0eaf60d74889c01fda.zip
[PM] Update Polly for LLVM r226394 and r226396 which changed some of the
block splitting interfaces to accept specific analyses rather than a pass. llvm-svn: 226398
Diffstat (limited to 'polly/lib/CodeGen/LoopGenerators.cpp')
-rw-r--r--polly/lib/CodeGen/LoopGenerators.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/CodeGen/LoopGenerators.cpp b/polly/lib/CodeGen/LoopGenerators.cpp
index 05ab6207904..183ce9c4481 100644
--- a/polly/lib/CodeGen/LoopGenerators.cpp
+++ b/polly/lib/CodeGen/LoopGenerators.cpp
@@ -92,7 +92,7 @@ Value *polly::createLoop(Value *LB, Value *UB, Value *Stride,
Annotator->pushLoop(NewLoop, Parallel);
// ExitBB
- ExitBB = SplitBlock(BeforeBB, Builder.GetInsertPoint()++, P);
+ ExitBB = SplitBlock(BeforeBB, Builder.GetInsertPoint()++, &DT, &LI);
ExitBB->setName("polly.loop_exit");
// BeforeBB
OpenPOWER on IntegriCloud