Skip to content

Commit 92c2d95

Browse files
committed
Adjust comment per review suggestion
1 parent 91bb24e commit 92c2d95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Target/RISCV/RISCVISelLowering.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18430,8 +18430,8 @@ static SDValue foldReduceOperandViaVQDOT(SDValue InVec, const SDLoc &DL,
1843018430
}
1843118431
}
1843218432

18433-
// reduce (zext a) <--> partial_reduce_umla 0, a, 1
18434-
// reduce (sext a) <--> partial_reduce_smla 0, a, 1
18433+
// zext a <--> partial_reduce_umla 0, a, 1
18434+
// sext a <--> partial_reduce_smla 0, a, 1
1843518435
if (InVec.getOpcode() == ISD::ZERO_EXTEND ||
1843618436
InVec.getOpcode() == ISD::SIGN_EXTEND) {
1843718437
SDValue A = InVec.getOperand(0);

0 commit comments

Comments
 (0)