@@ -1540,8 +1540,8 @@ TEST_F(VPRecipeTest, CastVPReductionRecipeToVPUser) {
1540
1540
VPValue *ChainOp = getPlan ().getOrAddLiveIn (ConstantInt::get (Int32, 1 ));
1541
1541
VPValue *VecOp = getPlan ().getOrAddLiveIn (ConstantInt::get (Int32, 2 ));
1542
1542
VPValue *CondOp = getPlan ().getOrAddLiveIn (ConstantInt::get (Int32, 3 ));
1543
- VPReductionRecipe Recipe (RecurrenceDescriptor (), Add, ChainOp, CondOp,
1544
- VecOp, false );
1543
+ VPReductionRecipe Recipe (RecurrenceDescriptor (), Add, ChainOp, CondOp, VecOp,
1544
+ false );
1545
1545
EXPECT_TRUE (isa<VPUser>(&Recipe));
1546
1546
VPRecipeBase *BaseR = &Recipe;
1547
1547
EXPECT_TRUE (isa<VPUser>(BaseR));
@@ -1555,8 +1555,8 @@ TEST_F(VPRecipeTest, CastVPReductionEVLRecipeToVPUser) {
1555
1555
VPValue *ChainOp = getPlan ().getOrAddLiveIn (ConstantInt::get (Int32, 1 ));
1556
1556
VPValue *VecOp = getPlan ().getOrAddLiveIn (ConstantInt::get (Int32, 2 ));
1557
1557
VPValue *CondOp = getPlan ().getOrAddLiveIn (ConstantInt::get (Int32, 3 ));
1558
- VPReductionRecipe Recipe (RecurrenceDescriptor (), Add, ChainOp, CondOp,
1559
- VecOp, false );
1558
+ VPReductionRecipe Recipe (RecurrenceDescriptor (), Add, ChainOp, CondOp, VecOp,
1559
+ false );
1560
1560
VPValue *EVL = getPlan ().getOrAddLiveIn (ConstantInt::get (Int32, 0 ));
1561
1561
VPReductionEVLRecipe EVLRecipe (Recipe, *EVL, CondOp);
1562
1562
EXPECT_TRUE (isa<VPUser>(&EVLRecipe));
0 commit comments