[Mlir-commits] [mlir] [mlir] [bufferize] fix bufferize deallocation error in nest symbol table (PR #98476)
donald chen
llvmlistbot at llvm.org
Sun Jul 14 20:01:58 PDT 2024
================
@@ -46,7 +46,8 @@ std::unique_ptr<Pass> createLowerDeallocationsPass();
/// Adds the conversion pattern of the `bufferization.dealloc` operation to the
/// given pattern set for use in other transformation passes.
void populateBufferizationDeallocLoweringPattern(
- RewritePatternSet &patterns, func::FuncOp deallocLibraryFunc);
+ RewritePatternSet &patterns,
+ const llvm::DenseMap<Operation *, func::FuncOp> &deallocHelperFuncMap);
----------------
cxy-1993 wrote:
DONE
https://github.com/llvm/llvm-project/pull/98476
More information about the Mlir-commits
mailing list