diff options
author | Tobias Grosser <tobias@grosser.es> | 2014-01-13 22:29:56 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2014-01-13 22:29:56 +0000 |
commit | 42aff30dbc698f33a0a6be143ea77810aa8abb65 (patch) | |
tree | 27bd9f14a25a6789587729bf858cde90659fc113 /polly/lib/CodeGen/Utils.cpp | |
parent | 0c306ba08c69480f2f196ea021e2f89aae1d35ef (diff) | |
download | bcm5719-llvm-42aff30dbc698f33a0a6be143ea77810aa8abb65.tar.gz bcm5719-llvm-42aff30dbc698f33a0a6be143ea77810aa8abb65.zip |
Adapt to DomTree changes in r199104
llvm-svn: 199157
Diffstat (limited to 'polly/lib/CodeGen/Utils.cpp')
-rw-r--r-- | polly/lib/CodeGen/Utils.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/polly/lib/CodeGen/Utils.cpp b/polly/lib/CodeGen/Utils.cpp index c4ace6c19e2..1e648655a1e 100644 --- a/polly/lib/CodeGen/Utils.cpp +++ b/polly/lib/CodeGen/Utils.cpp @@ -23,7 +23,8 @@ BasicBlock *polly::executeScopConditionally(Scop &S, Pass *PassInfo) { BasicBlock *StartBlock, *SplitBlock, *NewBlock; Region &R = S.getRegion(); IRBuilder<> Builder(R.getEntry()); - DominatorTree &DT = PassInfo->getAnalysis<DominatorTree>(); + DominatorTree &DT = + PassInfo->getAnalysis<DominatorTreeWrapperPass>().getDomTree(); RegionInfo &RI = PassInfo->getAnalysis<RegionInfo>(); // Split the entry edge of the region and generate a new basic block on this |