Skip to content

Commit 8aa6aa9

Browse files
author
Leon Clark
committed
Formatting.
1 parent 4aa02e8 commit 8aa6aa9

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
@@ -3756,9 +3756,8 @@ bool VectorCombine::shrinkPhiOfShuffles(Instruction &I) {
37563756
auto OldCost =
37573757
std::max(TTI.getShuffleCost(Kind, ResultVT, InputVT, Mask0, CostKind),
37583758
TTI.getShuffleCost(Kind, ResultVT, InputVT, Mask1, CostKind));
3759-
auto NewCost =
3760-
TTI.getShuffleCost(Kind, InputVT, InputVT, NewMask, CostKind) +
3761-
TTI.getShuffleCost(Kind, ResultVT, InputVT, Mask1, CostKind);
3759+
auto NewCost = TTI.getShuffleCost(Kind, InputVT, InputVT, NewMask, CostKind) +
3760+
TTI.getShuffleCost(Kind, ResultVT, InputVT, Mask1, CostKind);
37623761

37633762
if (NewCost > OldCost)
37643763
return false;

0 commit comments

Comments
 (0)