Skip to content

Commit 4ba18a2

Browse files
committed
updated comment
1 parent 29a8a5f commit 4ba18a2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3588,9 +3588,9 @@ static SDValue performMulCombine(SDNode *N,
35883588
if (auto Res = TryWideExtMulCombine(N, DCI.DAG))
35893589
return Res;
35903590

3591-
// We don't natively support v16i8 mul, but we do support v8i16 so split the
3592-
// inputs and extend them to v8i16. Only do this before legalization in case
3593-
// a narrow vector is widened and may be simplified later.
3591+
// We don't natively support v16i8 or v8i8 mul, but we do support v8i16. So,
3592+
// extend them to v8i16. Only do this before legalization in case a narrow
3593+
// vector is widened and may be simplified later.
35943594
if (!DCI.isBeforeLegalize() || (VT != MVT::v8i8 && VT != MVT::v16i8))
35953595
return SDValue();
35963596

0 commit comments

Comments
 (0)