[llvm] [VPlan] Fix crash when unrolling in-loop reduction chains (PR #129840)
David Sherwood via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 5 01:21:33 PST 2025
================
@@ -295,8 +295,8 @@ void UnrollState::unrollRecipeByUF(VPRecipeBase &R) {
continue;
}
if (auto *Red = dyn_cast<VPReductionRecipe>(&R)) {
- auto *Phi = cast<VPReductionPHIRecipe>(R.getOperand(0));
- if (Phi->isOrdered()) {
+ if (auto *Phi = dyn_cast<VPReductionPHIRecipe>(R.getOperand(0));
----------------
david-arm wrote:
nit: Perhaps this is personal preference, but I find it more readable to keep the variable out of the if statement so we avoid multi-statement lines, i.e. something like
```
auto *Phi = dyn_cast<VPReductionPHIRecipe>(R.getOperand(0));
if (Phi && Phi->isOrdered())
```
https://github.com/llvm/llvm-project/pull/129840
More information about the llvm-commits
mailing list