[llvm] [LoopFusion] Remove non-ascii character from comment [NFC] (PR #216413)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 14 14:53:29 PDT 2026
llvmorg-github-actions[bot] wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-transforms
Author: Ehsan Amiri (amehsan)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/216413.diff
1 Files Affected:
- (modified) llvm/lib/Transforms/Scalar/LoopFuse.cpp (+1-1)
``````````diff
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);
``````````
</details>
https://github.com/llvm/llvm-project/pull/216413
More information about the llvm-commits
mailing list