mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
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:
parent
5934863461
commit
74539a4a13
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user