Skip to content

Commit 17cfc15

Browse files
committed
Fix spelling typo. NFC
commutatvity -> commutativity
1 parent dee02ee commit 17cfc15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/X86/X86ISelLowering.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52193,7 +52193,7 @@ static SDValue combineAndnp(SDNode *N, SelectionDAG &DAG,
5219352193
if (SDValue Not = IsNOT(N0, DAG))
5219452194
return DAG.getNode(ISD::AND, DL, VT, DAG.getBitcast(VT, Not), N1);
5219552195

52196-
// Fold for better commutatvity:
52196+
// Fold for better commutativity:
5219752197
// ANDNP(x,NOT(y)) -> AND(NOT(x),NOT(y)) -> NOT(OR(X,Y)).
5219852198
if (N1->hasOneUse())
5219952199
if (SDValue Not = IsNOT(N1, DAG))

0 commit comments

Comments
 (0)