Skip to content

Commit b36ef9f

Browse files
author
Thomas Preud'homme
committed
[MLIR, test] Fix use of undef FileCheck var
MLIR test Dialect/Linalg/tile-indexed-generic.mlir has a CHECK-NOT directive referring to a variable only defined in a CHECK directive with a different prefix, and thus undefined in the CHECK-NOT. This commit removes the variable reference altogether to error on any content it might have. Reviewed By: pifon2a Differential Revision: https://reviews.llvm.org/D99956
1 parent 14a7296 commit b36ef9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/test/Dialect/Linalg/tile-indexed-generic.mlir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func @indexed_generic_vector(%operand: memref<50xf32>, %result: memref<50xf32>)
4242
// TILE-25n0: %[[OUT:.*]] = addf %[[IN]], %[[NEW_I_FLOAT]] : f32
4343

4444
// TILE-0n25-LABEL: func @indexed_generic_vector
45-
// TILE-0n25-NOT: scf.for %[[J:.*]] = {{.*}} step %[[C25]]
45+
// TILE-0n25-NOT: scf.for %[[J:.*]] = {{.*}} step %
4646
// TILE-0n25: linalg.indexed_generic
4747

4848
#combined_indices_trait = {

0 commit comments

Comments
 (0)