Skip to content

Commit 8de5d0a

Browse files
committed
Fix formatting
Created using spr 1.3.5
1 parent 5e13990 commit 8de5d0a

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10143,8 +10143,8 @@ class InstructionsCompatibilityAnalysis {
1014310143
SmallVector<std::pair<Value *, Value *>, 4> Candidates1, Candidates2;
1014410144
Candidates1.emplace_back(Operands[0][0], Operands[0][1]);
1014510145
Candidates2.emplace_back(Operands[1][0], Operands[1][1]);
10146-
bool Res = R.findBestRootPair(Candidates1) &&
10147-
R.findBestRootPair(Candidates2);
10146+
bool Res =
10147+
R.findBestRootPair(Candidates1) && R.findBestRootPair(Candidates2);
1014810148
if (!Res && isCommutative(MainOp)) {
1014910149
Candidates1.clear();
1015010150
Candidates2.clear();
@@ -16576,9 +16576,10 @@ Value *BoUpSLP::gather(
1657616576
UserOp = InsElt;
1657716577
}
1657816578
if (UserOp) {
16579-
if (const auto *It = find_if_not(
16580-
Entries,
16581-
[&](const TreeEntry *TE) { return TE->isCopyableElement(V); });
16579+
if (const auto *It = find_if_not(Entries,
16580+
[&](const TreeEntry *TE) {
16581+
return TE->isCopyableElement(V);
16582+
});
1658216583
It != Entries.end()) {
1658316584
unsigned FoundLane = Entries.front()->findLaneForValue(V);
1658416585
ExternalUses.emplace_back(V, UserOp, *Entries.front(), FoundLane);

0 commit comments

Comments
 (0)