Browse Source

[linux-port] Fix linux build break. (#1767)

Ehsan 6 years ago
parent
commit
cd237f5c3f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/Transforms/Scalar/DxilLoopUnroll.cpp

+ 1 - 1
lib/Transforms/Scalar/DxilLoopUnroll.cpp

@@ -645,7 +645,7 @@ bool DxilLoopUnroll::runOnLoop(Loop *L, LPPassManager &LPM) {
     LoopIteration *PrevIteration = nullptr;
     if (Iterations.size())
       PrevIteration = Iterations.back().get();
-    Iterations.push_back(std::make_unique<LoopIteration>());
+    Iterations.push_back(llvm::make_unique<LoopIteration>());
     LoopIteration &CurIteration = *Iterations.back().get();
 
     // Clone the blocks.