Skip to content

Commit b9b8748

Browse files
author
Leon Clark
committed
Formatting.
1 parent 31eeaa9 commit b9b8748

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

llvm/lib/Transforms/Vectorize/VectorCombine.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4059,9 +4059,8 @@ bool VectorCombine::shrinkPhiOfShuffles(Instruction &I) {
40594059
auto OldCost =
40604060
std::max(TTI.getShuffleCost(Kind, ResultVT, InputVT, Mask0, CostKind),
40614061
TTI.getShuffleCost(Kind, ResultVT, InputVT, Mask1, CostKind));
4062-
auto NewCost =
4063-
TTI.getShuffleCost(Kind, InputVT, InputVT, NewMask, CostKind) +
4064-
TTI.getShuffleCost(Kind, ResultVT, InputVT, Mask1, CostKind);
4062+
auto NewCost = TTI.getShuffleCost(Kind, InputVT, InputVT, NewMask, CostKind) +
4063+
TTI.getShuffleCost(Kind, ResultVT, InputVT, Mask1, CostKind);
40654064

40664065
if (NewCost > OldCost)
40674066
return false;

0 commit comments

Comments
 (0)