Skip to content

Commit b719c92

Browse files
committed
[SLP] findBestRootPair - fix incorrect argument name comment. NFC.
1 parent 96ad495 commit b719c92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2605,7 +2605,7 @@ class BoUpSLP {
26052605
int Score = LookAhead.getScoreAtLevelRec(Candidates[I].first,
26062606
Candidates[I].second,
26072607
/*U1=*/nullptr, /*U2=*/nullptr,
2608-
/*Level=*/1, std::nullopt);
2608+
/*CurrLevel=*/1, std::nullopt);
26092609
if (Score > BestScore) {
26102610
BestScore = Score;
26112611
Index = I;

0 commit comments

Comments
 (0)