diff options
Diffstat (limited to 'mlir/lib/Transforms/LoopCoalescing.cpp')
-rw-r--r-- | mlir/lib/Transforms/LoopCoalescing.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/lib/Transforms/LoopCoalescing.cpp b/mlir/lib/Transforms/LoopCoalescing.cpp index eb52e8d5802..2ce0fbd011b 100644 --- a/mlir/lib/Transforms/LoopCoalescing.cpp +++ b/mlir/lib/Transforms/LoopCoalescing.cpp @@ -97,7 +97,7 @@ public: } // namespace std::unique_ptr<FunctionPassBase> mlir::createLoopCoalescingPass() { - return llvm::make_unique<LoopCoalescingPass>(); + return std::make_unique<LoopCoalescingPass>(); } static PassRegistration<LoopCoalescingPass> |