[X86] Fix typo in comment. NFC

llvm-svn: 338274
This commit is contained in:
Craig Topper 2018-07-30 17:34:31 +00:00
parent dd0ef801f8
commit f014ec9b3b
1 changed files with 1 additions and 1 deletions

View File

@ -38911,7 +38911,7 @@ static SDValue matchPMADDWD_2(SelectionDAG &DAG, SDValue N0, SDValue N1,
std::swap(IdxN00, IdxN10);
std::swap(IdxN01, IdxN11);
}
// N0 indices be the even elemtn. N1 indices must be the next odd element.
// N0 indices be the even element. N1 indices must be the next odd element.
if (IdxN00 != 2 * i || IdxN10 != 2 * i + 1 ||
IdxN01 != 2 * i || IdxN11 != 2 * i + 1)
return SDValue();