From 549588698ffad07f758211f64e96a890e7cee5b0 Mon Sep 17 00:00:00 2001 From: Kazuaki Ishizaki Date: Mon, 27 Jan 2020 00:13:26 +0900 Subject: [PATCH] [mlir] NFC: Fix trivial typo in comment Summary: Also, an exercise to merge this into the master myself after a reviewer gives LGTM. Reviewers: nicolasvasilache, mehdi_amini Reviewed By: mehdi_amini Subscribers: Joonsoo, merge_guards_bot, mehdi_amini, rriddle, jpienaar, burmako, shauheen, antiagainst, arpith-jacob, mgester, lucyrfox, liufengdb, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D73432 --- mlir/test/Transforms/loop-fusion.mlir | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlir/test/Transforms/loop-fusion.mlir b/mlir/test/Transforms/loop-fusion.mlir index 78b45d6..1369682 100644 --- a/mlir/test/Transforms/loop-fusion.mlir +++ b/mlir/test/Transforms/loop-fusion.mlir @@ -1622,7 +1622,7 @@ func @should_fuse_after_two_loop_interchanges() { // dependence. // Once loop '%i2' is interchanged with loop '%i3', and again with loop // '%i5', then loop '%i0' can be fused at loop depth 2, because the loop - // carring the dependences have been interchanged with loops at depth > 2. + // carrying the dependences have been interchanged with loops at depth > 2. // CHECK: affine.for %{{.*}} = 0 to 6 { // CHECK-NEXT: affine.for %{{.*}} = 0 to 8 { -- 2.7.4