Skip to content

Commit f3235db

Browse files
committed
!fixup, formating.
1 parent ad13c64 commit f3235db

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

llvm/unittests/Transforms/Vectorize/VPlanTest.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1540,8 +1540,8 @@ TEST_F(VPRecipeTest, CastVPReductionRecipeToVPUser) {
15401540
VPValue *ChainOp = getPlan().getOrAddLiveIn(ConstantInt::get(Int32, 1));
15411541
VPValue *VecOp = getPlan().getOrAddLiveIn(ConstantInt::get(Int32, 2));
15421542
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);
15451545
EXPECT_TRUE(isa<VPUser>(&Recipe));
15461546
VPRecipeBase *BaseR = &Recipe;
15471547
EXPECT_TRUE(isa<VPUser>(BaseR));
@@ -1555,8 +1555,8 @@ TEST_F(VPRecipeTest, CastVPReductionEVLRecipeToVPUser) {
15551555
VPValue *ChainOp = getPlan().getOrAddLiveIn(ConstantInt::get(Int32, 1));
15561556
VPValue *VecOp = getPlan().getOrAddLiveIn(ConstantInt::get(Int32, 2));
15571557
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);
15601560
VPValue *EVL = getPlan().getOrAddLiveIn(ConstantInt::get(Int32, 0));
15611561
VPReductionEVLRecipe EVLRecipe(Recipe, *EVL, CondOp);
15621562
EXPECT_TRUE(isa<VPUser>(&EVLRecipe));

0 commit comments

Comments
 (0)