[llvm] [LV] Use frozen start value for FindLastIV if needed. (PR #132691)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 31 13:59:51 PDT 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff HEAD~1 HEAD --extensions cpp,h -- llvm/lib/Transforms/Vectorize/LoopVectorize.cpp llvm/lib/Transforms/Vectorize/VPlan.cpp llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp llvm/lib/Transforms/Vectorize/VPlanValue.h
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
index ce047ee9b..6aa6c9a2e 100644
--- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
@@ -9905,7 +9905,7 @@ void LoopVectorizationPlanner::adjustRecipesForReductions(
// Update all users outside the vector region.
for (VPUser *U : to_vector(OrigExitingVPV->users())) {
auto *R = cast<VPRecipeBase>(U);
- if (R->getParent()->getParent() == VectorLoopRegion )
+ if (R->getParent()->getParent() == VectorLoopRegion)
continue;
R->replaceUsesOfWith(PhiR->getStartValue(), Start);
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/132691
More information about the llvm-commits
mailing list