[Mlir-commits] [mlir] 44274e5 - [mlir][nfc] Add missing comment in a test

Andrzej Warzynski llvmlistbot at llvm.org
Wed Sep 27 13:03:55 PDT 2023


Author: Andrzej Warzynski
Date: 2023-09-27T20:02:26Z
New Revision: 44274e566a2708a99a3571e64589520907ccbc7a

URL: https://github.com/llvm/llvm-project/commit/44274e566a2708a99a3571e64589520907ccbc7a
DIFF: https://github.com/llvm/llvm-project/commit/44274e566a2708a99a3571e64589520907ccbc7a.diff

LOG: [mlir][nfc] Add missing comment in a test

Fixes an accidental omission in #67482

Added: 
    

Modified: 
    mlir/test/Dialect/SCF/transform-ops.mlir

Removed: 
    


################################################################################
diff  --git a/mlir/test/Dialect/SCF/transform-ops.mlir b/mlir/test/Dialect/SCF/transform-ops.mlir
index 043998711f64e5f..10b7ab91b8783ba 100644
--- a/mlir/test/Dialect/SCF/transform-ops.mlir
+++ b/mlir/test/Dialect/SCF/transform-ops.mlir
@@ -110,7 +110,7 @@ transform.sequence failures(propagate) {
   %0 = transform.structured.match ops{["arith.addi"]} in %arg1 : (!transform.any_op) -> !transform.any_op
   %1 = transform.loop.get_parent_for %0 : (!transform.any_op) -> !transform.op<"scf.for">
   %main_loop, %remainder = transform.loop.peel %1 : (!transform.op<"scf.for">) -> (!transform.op<"scf.for">, !transform.op<"scf.for">)
-  // Make sure 
+  // Verify that both of the generated loop handles are valid
   transform.test_print_remark_at_operand %main_loop, "main loop" : !transform.op<"scf.for">
   transform.test_print_remark_at_operand %remainder, "remainder loop" : !transform.op<"scf.for">
 }


        


More information about the Mlir-commits mailing list