Skip to content

Commit cf90dba

Browse files
committed
fix typo in assert
1 parent 813a2d1 commit cf90dba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6752,7 +6752,7 @@ SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
67526752
break;
67536753
case ISD::UCMP:
67546754
case ISD::SCMP:
6755-
assert(VT.isInteger() && "This operator doe snot apply to FP types!");
6755+
assert(VT.isInteger() && "This operator does not apply to FP types!");
67566756
assert(N1.getValueType() == N2.getValueType() &&
67576757
N1.getValueType() == VT && "Binary operator types must match");
67586758
break;

0 commit comments

Comments
 (0)