[llvm] [LoopUtils] Rename a var in addDiffRuntimeChecks (NFC) (PR #130128)
Ramkumar Ramachandra via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 6 08:05:23 PST 2025
https://github.com/artagnon created https://github.com/llvm/llvm-project/pull/130128
None
>From f3cc01022023873a85579d27777467f12760a885 Mon Sep 17 00:00:00 2001
From: Ramkumar Ramachandra <ramkumar.ramachandra at codasip.com>
Date: Thu, 6 Mar 2025 16:03:39 +0000
Subject: [PATCH] [LoopUtils] Rename a var in addDiffRuntimeChecks (NFC)
---
llvm/lib/Transforms/Utils/LoopUtils.cpp | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/llvm/lib/Transforms/Utils/LoopUtils.cpp b/llvm/lib/Transforms/Utils/LoopUtils.cpp
index ec1692a484ce0..ee07be190a453 100644
--- a/llvm/lib/Transforms/Utils/LoopUtils.cpp
+++ b/llvm/lib/Transforms/Utils/LoopUtils.cpp
@@ -2051,7 +2051,7 @@ Value *llvm::addDiffRuntimeChecks(
for (const auto &[SrcStart, SinkStart, AccessSize, NeedsFreeze] : Checks) {
Type *Ty = SinkStart->getType();
// Compute VF * IC * AccessSize.
- auto *VFTimesUFTimesSize =
+ auto *VFTimesICTimesSize =
ChkBuilder.CreateMul(GetVF(ChkBuilder, Ty->getScalarSizeInBits()),
ConstantInt::get(Ty, IC * AccessSize));
Value *Diff =
@@ -2059,13 +2059,13 @@ Value *llvm::addDiffRuntimeChecks(
// Check if the same compare has already been created earlier. In that case,
// there is no need to check it again.
- Value *IsConflict = SeenCompares.lookup({Diff, VFTimesUFTimesSize});
+ Value *IsConflict = SeenCompares.lookup({Diff, VFTimesICTimesSize});
if (IsConflict)
continue;
IsConflict =
- ChkBuilder.CreateICmpULT(Diff, VFTimesUFTimesSize, "diff.check");
- SeenCompares.insert({{Diff, VFTimesUFTimesSize}, IsConflict});
+ ChkBuilder.CreateICmpULT(Diff, VFTimesICTimesSize, "diff.check");
+ SeenCompares.insert({{Diff, VFTimesICTimesSize}, IsConflict});
if (NeedsFreeze)
IsConflict =
ChkBuilder.CreateFreeze(IsConflict, IsConflict->getName() + ".fr");
More information about the llvm-commits
mailing list