diff options
Diffstat (limited to 'polly/lib/Transform/DeLICM.cpp')
-rw-r--r-- | polly/lib/Transform/DeLICM.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/Transform/DeLICM.cpp b/polly/lib/Transform/DeLICM.cpp index 7191993e845..8e172dbc9a1 100644 --- a/polly/lib/Transform/DeLICM.cpp +++ b/polly/lib/Transform/DeLICM.cpp @@ -1358,7 +1358,7 @@ private: void collapseToUnused(Scop &S) { auto &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); - Impl = make_unique<DeLICMImpl>(&S, &LI); + Impl = std::make_unique<DeLICMImpl>(&S, &LI); if (!Impl->computeZone()) { LLVM_DEBUG(dbgs() << "Abort because cannot reliably compute lifetimes\n"); |