diff options
Diffstat (limited to 'mlir/lib/Transforms/LoopTiling.cpp')
-rw-r--r-- | mlir/lib/Transforms/LoopTiling.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/lib/Transforms/LoopTiling.cpp b/mlir/lib/Transforms/LoopTiling.cpp index d6ff9a94234..c521a8f6f5d 100644 --- a/mlir/lib/Transforms/LoopTiling.cpp +++ b/mlir/lib/Transforms/LoopTiling.cpp @@ -83,7 +83,7 @@ struct LoopTiling : public FunctionPass<LoopTiling> { /// Function. std::unique_ptr<FunctionPassBase> mlir::createLoopTilingPass(uint64_t cacheSizeBytes) { - return llvm::make_unique<LoopTiling>(cacheSizeBytes); + return std::make_unique<LoopTiling>(cacheSizeBytes); } // Move the loop body of AffineForOp 'src' from 'src' into the specified |