[Mlir-commits] [mlir] 44735e1 - [mlir] Clean up leftovers from moving linalg::Expand/CollapseShapeOp to memref dialect (#172448)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Tue Dec 16 02:14:49 PST 2025


Author: Maya Amrami
Date: 2025-12-16T12:14:45+02:00
New Revision: 44735e1082db2f501a28c721779a0b4f4b30292a

URL: https://github.com/llvm/llvm-project/commit/44735e1082db2f501a28c721779a0b4f4b30292a
DIFF: https://github.com/llvm/llvm-project/commit/44735e1082db2f501a28c721779a0b4f4b30292a.diff

LOG: [mlir] Clean up leftovers from moving linalg::Expand/CollapseShapeOp to memref dialect (#172448)

Added: 
    

Modified: 
    mlir/test/Dialect/MemRef/canonicalize.mlir

Removed: 
    


################################################################################
diff  --git a/mlir/test/Dialect/MemRef/canonicalize.mlir b/mlir/test/Dialect/MemRef/canonicalize.mlir
index e02717a2f5689..60311306b984d 100644
--- a/mlir/test/Dialect/MemRef/canonicalize.mlir
+++ b/mlir/test/Dialect/MemRef/canonicalize.mlir
@@ -522,7 +522,7 @@ func.func @fold_collapse_of_expand(%arg0 : memref<12x4xf32>) -> memref<12x4xf32>
   return %1 : memref<12x4xf32>
 }
 // CHECK-LABEL: func @fold_collapse_of_expand
-//   CHECK-NOT:   linalg.{{.*}}_shape
+//   CHECK-NOT:   memref.{{.*}}_shape
 
 // -----
 
@@ -535,7 +535,7 @@ func.func @fold_collapse_collapse_of_expand(%arg0 : memref<?x?xf32>, %sz0: index
   return %1 : memref<?x?xf32>
 }
 // CHECK-LABEL: @fold_collapse_collapse_of_expand
-//   CHECK-NOT:   linalg.{{.*}}_shape
+//   CHECK-NOT:   memref.{{.*}}_shape
 
 // -----
 


        


More information about the Mlir-commits mailing list