Analysis: fix buildbots

This should fix the compilation failure on the MSVC buildbots which find a
std::make_unique and llvm::make_unique via ADL, resulting in ambiguity.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229638 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Saleem Abdulrasool 2015-02-18 05:09:50 +00:00
parent 5934863461
commit 74539a4a13

View File

@ -1311,7 +1311,7 @@ const LoopAccessInfo &LoopAccessAnalysis::getInfo(Loop *L,
#endif
if (!LAI) {
LAI = make_unique<LoopAccessInfo>(L, SE, DL, TLI, AA, DT, Strides);
LAI = llvm::make_unique<LoopAccessInfo>(L, SE, DL, TLI, AA, DT, Strides);
#ifndef NDEBUG
LAI->NumSymbolicStrides = Strides.size();
#endif