forked from OSchip/llvm-project
Add a missing break statement to fix unintentional fall-through
(replacing the previous patch for the same issue). llvm-svn: 103183
This commit is contained in:
parent
b8993384f3
commit
f765e1f34a
|
@ -1866,7 +1866,7 @@ SDNode *ARMDAGToDAGISel::Select(SDNode *N) {
|
|||
unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
|
||||
switch (IntNo) {
|
||||
default:
|
||||
return SelectCode(N);
|
||||
break;
|
||||
|
||||
case Intrinsic::arm_neon_vld1: {
|
||||
unsigned DOpcodes[] = { ARM::VLD1d8, ARM::VLD1d16,
|
||||
|
@ -1988,13 +1988,12 @@ SDNode *ARMDAGToDAGISel::Select(SDNode *N) {
|
|||
return SelectVLDSTLane(N, false, 4, DOpcodes, QOpcodes0, QOpcodes1);
|
||||
}
|
||||
}
|
||||
llvm_unreachable("Unhandled intrinsic");
|
||||
break;
|
||||
}
|
||||
|
||||
case ISD::CONCAT_VECTORS: {
|
||||
case ISD::CONCAT_VECTORS:
|
||||
return SelectConcatVector(N);
|
||||
}
|
||||
}
|
||||
|
||||
return SelectCode(N);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue