[Mlir-commits] [mlir] ae8ebec - [MLIR] Fix test case typos in unroll.mlir
Uday Bondhugula
llvmlistbot at llvm.org
Wed Apr 8 09:51:27 PDT 2020
Author: Uday Bondhugula
Date: 2020-04-08T22:21:07+05:30
New Revision: ae8ebeca519d49c94c97e67a0314747362e25b8c
URL: https://github.com/llvm/llvm-project/commit/ae8ebeca519d49c94c97e67a0314747362e25b8c
DIFF: https://github.com/llvm/llvm-project/commit/ae8ebeca519d49c94c97e67a0314747362e25b8c.diff
LOG: [MLIR] Fix test case typos in unroll.mlir
Fix check line typos in test/Dialect/Affine/unroll.mlir.
Differential Revision: https://reviews.llvm.org/D77738
Added:
Modified:
mlir/test/Dialect/Affine/unroll.mlir
Removed:
################################################################################
diff --git a/mlir/test/Dialect/Affine/unroll.mlir b/mlir/test/Dialect/Affine/unroll.mlir
index 7a352ea07471..2681fdc2ce1d 100644
--- a/mlir/test/Dialect/Affine/unroll.mlir
+++ b/mlir/test/Dialect/Affine/unroll.mlir
@@ -501,7 +501,7 @@ func @loop_nest_symbolic_bound(%N : index) {
// A cleanup loop will be be generated here.
// UNROLL-BY-4-NEXT: affine.for %arg2 = #map{{[0-9]+}}()[%arg0] to %arg0 {
// UNROLL-BY-4-NEXT: %0 = "foo"() : () -> i32
- // UNROLL-BY-4_NEXT: }
+ // UNROLL-BY-4-NEXT: }
affine.for %j = 0 to %N {
%x = "foo"() : () -> i32
}
@@ -526,7 +526,7 @@ func @loop_nest_symbolic_bound_with_step(%N : index) {
// A cleanup loop will be be generated here.
// UNROLL-BY-4-NEXT: affine.for %{{.*}} = #map{{[0-9]+}}()[%[[N]]] to %[[N]] step 3 {
// UNROLL-BY-4-NEXT: "foo"()
-// UNROLL-BY-4_NEXT: }
+// UNROLL-BY-4-NEXT: }
}
return
}
More information about the Mlir-commits
mailing list