File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
llvm/lib/Transforms/Vectorize Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff 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);
You can’t perform that action at this time.
0 commit comments