[RISCV] Replace 'return ReplaceNode' with 'ReplaceNode; return;' NFC
authorCraig Topper <craig.topper@sifive.com>
Wed, 7 Apr 2021 19:17:42 +0000 (12:17 -0700)
committerCraig Topper <craig.topper@sifive.com>
Wed, 7 Apr 2021 19:18:41 +0000 (12:18 -0700)
ReplaceNode is a void function as is the function that we were
doing this in. While this is valid code, it was a bit confusing.

llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp

index 57de6ce..e20a7c3 100644 (file)
@@ -411,7 +411,6 @@ void RISCVDAGToDAGISel::Select(SDNode *Node) {
     }
     ReplaceNode(Node, selectImm(CurDAG, DL, ConstNode->getSExtValue(), XLenVT));
     return;
-    break;
   }
   case ISD::FrameIndex: {
     SDValue Imm = CurDAG->getTargetConstant(0, DL, XLenVT);
@@ -925,11 +924,13 @@ void RISCVDAGToDAGISel::Select(SDNode *Node) {
       SDValue RC = CurDAG->getTargetConstant(InRegClassID, DL, XLenVT);
       SDNode *NewNode = CurDAG->getMachineNode(TargetOpcode::COPY_TO_REGCLASS,
                                                DL, VT, SubV, RC);
-      return ReplaceNode(Node, NewNode);
+      ReplaceNode(Node, NewNode);
+      return;
     }
 
     SDValue Insert = CurDAG->getTargetInsertSubreg(SubRegIdx, DL, VT, V, SubV);
-    return ReplaceNode(Node, Insert.getNode());
+    ReplaceNode(Node, Insert.getNode());
+    return;
   }
   case ISD::EXTRACT_SUBVECTOR: {
     SDValue V = Node->getOperand(0);
@@ -968,11 +969,13 @@ void RISCVDAGToDAGISel::Select(SDNode *Node) {
       SDValue RC = CurDAG->getTargetConstant(InRegClassID, DL, XLenVT);
       SDNode *NewNode =
           CurDAG->getMachineNode(TargetOpcode::COPY_TO_REGCLASS, DL, VT, V, RC);
-      return ReplaceNode(Node, NewNode);
+      ReplaceNode(Node, NewNode);
+      return;
     }
 
     SDValue Extract = CurDAG->getTargetExtractSubreg(SubRegIdx, DL, VT, V);
-    return ReplaceNode(Node, Extract.getNode());
+    ReplaceNode(Node, Extract.getNode());
+    return;
   }
   }