We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e82fc5 commit d604652Copy full SHA for d604652
llvm/lib/Transforms/Vectorize/VPlan.h
@@ -2589,7 +2589,8 @@ class VPMulAccumulateReductionRecipe : public VPReductionRecipe {
2589
2590
/// Return if this MulAcc recipe contains extend instructions.
2591
bool isExtended() const {
2592
- return getVecOp0Info().ExtOp != Instruction::CastOps::CastOpsEnd;
+ return getVecOp0Info().ExtOp != Instruction::CastOps::CastOpsEnd ||
2593
+ getVecOp1Info().ExtOp != Instruction::CastOps::CastOpsEnd;
2594
}
2595
2596
/// Return if the operands of mul instruction come from same extend.
0 commit comments