Delete redundant return statements.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63120 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2009-01-27 19:23:22 +00:00
parent 9e79091f1a
commit daac99cdfb

View File

@ -1341,7 +1341,6 @@ void SelectionDAGLowering::visitJumpTable(JumpTable &JT) {
SDValue Table = DAG.getJumpTable(JT.JTI, PTy); SDValue Table = DAG.getJumpTable(JT.JTI, PTy);
DAG.setRoot(DAG.getNode(ISD::BR_JT, MVT::Other, Index.getValue(1), DAG.setRoot(DAG.getNode(ISD::BR_JT, MVT::Other, Index.getValue(1),
Table, Index)); Table, Index));
return;
} }
/// visitJumpTableHeader - This function emits necessary code to produce index /// visitJumpTableHeader - This function emits necessary code to produce index
@ -1392,8 +1391,6 @@ void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT,
else else
DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond, DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrCond,
DAG.getBasicBlock(JT.MBB))); DAG.getBasicBlock(JT.MBB)));
return;
} }
/// visitBitTestHeader - This function emits necessary code to produce value /// visitBitTestHeader - This function emits necessary code to produce value
@ -1439,8 +1436,6 @@ void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) {
else else
DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, CopyTo, DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, CopyTo,
DAG.getBasicBlock(MBB))); DAG.getBasicBlock(MBB)));
return;
} }
/// visitBitTestCase - this function produces one "bit test" /// visitBitTestCase - this function produces one "bit test"
@ -1479,8 +1474,6 @@ void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB,
else else
DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrAnd, DAG.setRoot(DAG.getNode(ISD::BR, MVT::Other, BrAnd,
DAG.getBasicBlock(NextMBB))); DAG.getBasicBlock(NextMBB)));
return;
} }
void SelectionDAGLowering::visitInvoke(InvokeInst &I) { void SelectionDAGLowering::visitInvoke(InvokeInst &I) {