[Mlir-commits] [mlir] [mlir][bufferization] Add support for recursive function calls (PR #114003)

Matthias Springer llvmlistbot at llvm.org
Thu Oct 31 20:56:10 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;
----------------
matthias-springer wrote:

Added more comments around this line.

https://github.com/llvm/llvm-project/pull/114003


More information about the Mlir-commits mailing list