[Mlir-commits] [mlir] [mlir]Fix compose subview (PR #80551)

Uday Bondhugula llvmlistbot at llvm.org
Mon Feb 5 16:52:23 PST 2024


================
@@ -24,14 +24,14 @@ using namespace mlir;
 
 namespace {
 
-// Replaces a subview of a subview with a single subview. Only supports subview
-// ops with static sizes and static strides of 1 (both static and dynamic
+// Replaces a subview of a subview with a single subview(both static and dynamic
 // offsets are supported).
 struct ComposeSubViewOpPattern : public OpRewritePattern<memref::SubViewOp> {
   using OpRewritePattern::OpRewritePattern;
 
   LogicalResult matchAndRewrite(memref::SubViewOp op,
                                 PatternRewriter &rewriter) const override {
+
----------------
bondhugula wrote:

Drop blank new line.

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


More information about the Mlir-commits mailing list