[RISCV][NFC] Fix doc comment for RISCVDAGToDAGISel::selectSETCC
authorAlex Bradbury <asb@igalia.com>
Tue, 4 Jul 2023 12:28:12 +0000 (13:28 +0100)
committerAlex Bradbury <asb@igalia.com>
Tue, 4 Jul 2023 12:30:08 +0000 (13:30 +0100)
The doc comment referred to a boolean parameter that has since been
replaced with an ISD::CondCode.

llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp

index 03b320c..839ec4d 100644 (file)
@@ -2487,8 +2487,8 @@ bool RISCVDAGToDAGISel::selectShiftMask(SDValue N, unsigned ShiftWidth,
 /// RISC-V doesn't have general instructions for integer setne/seteq, but we can
 /// check for equality with 0. This function emits instructions that convert the
 /// seteq/setne into something that can be compared with 0.
-/// When \p Equal is false, we match setne. When \p Equal is true, we match
-/// seteq.
+/// \p ExpectedCCVal indicates the condition code to attempt to match (e.g.
+/// ISD::SETNE).
 bool RISCVDAGToDAGISel::selectSETCC(SDValue N, ISD::CondCode ExpectedCCVal,
                                     SDValue &Val) {
   assert(ISD::isIntEqualitySetCC(ExpectedCCVal) &&