From: Saleem Abdulrasool Date: Wed, 18 Feb 2015 05:09:50 +0000 (+0000) Subject: Analysis: fix buildbots X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=74539a4a13940039ff53e45570a472cd1c3211ef;p=oota-llvm.git 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 --- diff --git a/lib/Analysis/LoopAccessAnalysis.cpp b/lib/Analysis/LoopAccessAnalysis.cpp index c974b36d76e..a0e88370bc2 100644 --- a/lib/Analysis/LoopAccessAnalysis.cpp +++ b/lib/Analysis/LoopAccessAnalysis.cpp @@ -1311,7 +1311,7 @@ const LoopAccessInfo &LoopAccessAnalysis::getInfo(Loop *L, #endif if (!LAI) { - LAI = make_unique(L, SE, DL, TLI, AA, DT, Strides); + LAI = llvm::make_unique(L, SE, DL, TLI, AA, DT, Strides); #ifndef NDEBUG LAI->NumSymbolicStrides = Strides.size(); #endif