[llvm] [VPlan] Expand affine AddRecs to VPInstructions (PR #209921)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 16 03:17:04 PDT 2026
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 origin/main HEAD --extensions cpp,h -- llvm/lib/Transforms/Vectorize/VPlan.cpp llvm/lib/Transforms/Vectorize/VPlan.h llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp llvm/lib/Transforms/Vectorize/VPlanUtils.cpp --diff_from_common_commit
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Transforms/Vectorize/VPlanUtils.cpp b/llvm/lib/Transforms/Vectorize/VPlanUtils.cpp
index 2d5f82f31..869e6c46e 100644
--- a/llvm/lib/Transforms/Vectorize/VPlanUtils.cpp
+++ b/llvm/lib/Transforms/Vectorize/VPlanUtils.cpp
@@ -902,7 +902,7 @@ VPValue *VPSCEVExpander::tryToExpand(const SCEV *S) {
VPValue *CanonicalIV = nullptr;
SmallVector<VPValue *> IRPhis;
for (auto *VPBB : VPBlockUtils::blocksOnly<VPIRBasicBlock>(
- vp_depth_first_shallow(Builder.getPlan().getEntry()))) {
+ vp_depth_first_shallow(Builder.getPlan().getEntry()))) {
for (VPRecipeBase &R : *VPBB)
if (auto *IRPhi = dyn_cast<VPIRPhi>(&R))
if (&IRPhi->getIRPhi() == CanIVPhi)
``````````
</details>
https://github.com/llvm/llvm-project/pull/209921
More information about the llvm-commits
mailing list