[llvm] [VPlan] Fix crash with inloop fmuladd reductions with blend (PR #131154)
Alexey Bataev via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 08:13:30 PDT 2025
================
@@ -9713,6 +9713,19 @@ void LoopVectorizationPlanner::adjustRecipesForReductions(
// condition directly.
VPSingleDefRecipe *PreviousLink = PhiR; // Aka Worklist[0].
for (VPSingleDefRecipe *CurrentLink : Worklist.getArrayRef().drop_front()) {
+ if (auto *Blend = dyn_cast<VPBlendRecipe>(CurrentLink)) {
+ assert(Blend->getNumIncomingValues() == 2 &&
+ "Blend must have 2 incoming values");
+ if (Blend->getIncomingValue(0) == PhiR)
+ Blend->replaceAllUsesWith(Blend->getIncomingValue(1));
+ else {
----------------
alexey-bataev wrote:
Enclose in braces
https://github.com/llvm/llvm-project/pull/131154
More information about the llvm-commits
mailing list