diff options
Diffstat (limited to 'mlir/test/lib/Transforms/TestLoopFusion.cpp')
-rw-r--r-- | mlir/test/lib/Transforms/TestLoopFusion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/test/lib/Transforms/TestLoopFusion.cpp b/mlir/test/lib/Transforms/TestLoopFusion.cpp index bcb050769a1..8b55d351bdc 100644 --- a/mlir/test/lib/Transforms/TestLoopFusion.cpp +++ b/mlir/test/lib/Transforms/TestLoopFusion.cpp @@ -59,7 +59,7 @@ struct TestLoopFusion : public FunctionPass<TestLoopFusion> { } // end anonymous namespace std::unique_ptr<FunctionPassBase> mlir::createTestLoopFusionPass() { - return llvm::make_unique<TestLoopFusion>(); + return std::make_unique<TestLoopFusion>(); } // Gathers all AffineForOps in 'block' at 'currLoopDepth' in 'depthToLoops'. |