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

Erick Ochoa Lopez llvmlistbot at llvm.org
Mon Aug 25 06:15:34 PDT 2025


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

Just curious, is there a reason why `TrivialPatternRewriter` is used instead of just `PatternRewriter`?

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


More information about the Mlir-commits mailing list