[Mlir-commits] [mlir] [mlir][memref] Alias attributes for memref dialect (PR #154991)

Ivan Butygin llvmlistbot at llvm.org
Mon Aug 25 06:25:16 PDT 2025


================
@@ -2062,6 +2093,68 @@ struct FinalizeMemRefToLLVMConversionPass
   }
 };
 
+struct TrivialPatternRewriter : public PatternRewriter {
+  explicit TrivialPatternRewriter(MLIRContext *context)
+      : PatternRewriter(context) {}
+};
----------------
Hardcode84 wrote:

`PatternRewriter` used to be non-instantiable, but I guess it was fixed. Removed (and there are other places in codebase which are still doing this).

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


More information about the Mlir-commits mailing list