Remove unreachable break. NFC
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Fri, 7 Aug 2020 11:37:49 +0000 (12:37 +0100)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Fri, 7 Aug 2020 11:37:49 +0000 (12:37 +0100)
llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp

index fcac5c7..e20e905 100644 (file)
@@ -2223,7 +2223,6 @@ SDValue SelectionDAG::GetDemandedBits(SDValue V, const APInt &DemandedBits,
   default:
     return TLI->SimplifyMultipleUseDemandedBits(V, DemandedBits, DemandedElts,
                                                 *this, 0);
-    break;
   case ISD::Constant: {
     const APInt &CVal = cast<ConstantSDNode>(V)->getAPIntValue();
     APInt NewVal = CVal & DemandedBits;