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 bfc5fc2 commit a0515c3Copy full SHA for a0515c3
llvm/lib/Transforms/Vectorize/VPlan.h
@@ -2694,10 +2694,8 @@ class VPMulAccumulateReductionRecipe : public VPReductionRecipe {
2694
MulAcc->getCondOp(), MulAcc->isOrdered(),
2695
WrapFlagsTy(MulAcc->hasNoUnsignedWrap(), MulAcc->hasNoSignedWrap()),
2696
MulAcc->getDebugLoc()),
2697
- ExtOp(MulAcc->getExtOpcode()), IsNonNeg(MulAcc->isNonNeg()) {
2698
- if (MulAcc->isExtended())
2699
- ResultTy = MulAcc->getResultType();
2700
- }
+ ExtOp(MulAcc->getExtOpcode()), IsNonNeg(MulAcc->isNonNeg()),
+ ResultTy(MulAcc->getResultType()) {}
2701
2702
public:
2703
VPMulAccumulateReductionRecipe(VPReductionRecipe *R, VPWidenRecipe *Mul,
0 commit comments