[llvm] [LoopFusion] Remove non-ascii character from comment [NFC] (PR #216413)

Ehsan Amiri via llvm-commits llvm-commits at lists.llvm.org
Fri Aug 14 14:52:42 PDT 2026


https://github.com/amehsan created https://github.com/llvm/llvm-project/pull/216413

None

>From 9f519ff33c6bc2dce353996172895fd1fcc477cb Mon Sep 17 00:00:00 2001
From: Ehsan Amiri <ehsan.amiri at huawei.com>
Date: Fri, 14 Aug 2026 17:49:18 -0400
Subject: [PATCH] [LoopFusion] Remove non-ascii character from comment [NFC]

---
 llvm/lib/Transforms/Scalar/LoopFuse.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/llvm/lib/Transforms/Scalar/LoopFuse.cpp b/llvm/lib/Transforms/Scalar/LoopFuse.cpp
index 6ce82a0dd7684..7ff9797a7d9af 100644
--- a/llvm/lib/Transforms/Scalar/LoopFuse.cpp
+++ b/llvm/lib/Transforms/Scalar/LoopFuse.cpp
@@ -1114,7 +1114,7 @@ struct LoopFuser {
     if (!DepResult)
       return true;
     // If two stores write the same SSA value, fusion is safe regardless of
-    // aliasing — writing the same value twice is idempotent.
+    // aliasing - writing the same value twice is idempotent.
     if (isa<StoreInst>(I0) && isa<StoreInst>(I1)) {
       auto *S0 = cast<StoreInst>(&I0);
       auto *S1 = cast<StoreInst>(&I1);



More information about the llvm-commits mailing list