diff options
Diffstat (limited to 'mlir/test/lib/Transforms/TestLoopMapping.cpp')
-rw-r--r-- | mlir/test/lib/Transforms/TestLoopMapping.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/test/lib/Transforms/TestLoopMapping.cpp b/mlir/test/lib/Transforms/TestLoopMapping.cpp index a9da70a6d5e..f4aa6469a99 100644 --- a/mlir/test/lib/Transforms/TestLoopMapping.cpp +++ b/mlir/test/lib/Transforms/TestLoopMapping.cpp @@ -62,4 +62,4 @@ public: static PassRegistration<TestLoopMappingPass> reg("test-mapping-to-processing-elements", "test mapping a single loop on a virtual processor grid", - [] { return llvm::make_unique<TestLoopMappingPass>(); }); + [] { return std::make_unique<TestLoopMappingPass>(); }); |