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 8e220607f06..c1eec56526e 100644 --- a/mlir/lib/Transforms/LoopCoalescing.cpp +++ b/mlir/lib/Transforms/LoopCoalescing.cpp @@ -96,7 +96,7 @@ public: } // namespace -std::unique_ptr<FunctionPassBase> mlir::createLoopCoalescingPass() { +std::unique_ptr<OpPassBase<FuncOp>> mlir::createLoopCoalescingPass() { return std::make_unique<LoopCoalescingPass>(); } |