[Mlir-commits] [mlir] [mlir][bufferization] Add support for recursive function calls (PR #114003)
Jacques Pienaar
llvmlistbot at llvm.org
Thu Oct 31 11:29:41 PDT 2024
================
@@ -430,13 +460,20 @@ LogicalResult mlir::bufferization::bufferizeModuleOp(
IRRewriter rewriter(moduleOp.getContext());
// A list of functions in the order in which they are analyzed + bufferized.
- SmallVector<func::FuncOp> orderedFuncOps;
+ SmallVector<func::FuncOp> orderedFuncOps, remainingFuncOps;
----------------
jpienaar wrote:
Could you update the comment?
https://github.com/llvm/llvm-project/pull/114003
More information about the Mlir-commits
mailing list