Skip to content

Commit 8c83fd8

Browse files
committed
Add missing arg name comment
1 parent 5c2741f commit 8c83fd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/X86/X86InstCombineIntrinsic.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2157,7 +2157,7 @@ static bool simplifyX86VPERMMask(Instruction *II, bool IsBinary,
21572157
APInt DemandedMask = APInt::getLowBitsSet(EltSizeInBits, IdxSizeInBits);
21582158

21592159
KnownBits KnownMask(EltSizeInBits);
2160-
return IC.SimplifyDemandedBits(II, 1, DemandedMask, KnownMask);
2160+
return IC.SimplifyDemandedBits(II, /*OpNo=*/1, DemandedMask, KnownMask);
21612161
}
21622162

21632163
std::optional<Instruction *>

0 commit comments

Comments
 (0)