mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-09 10:31:14 +00:00
Add a missing break statement to fix unintentional fall-through
(replacing the previous patch for the same issue). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103183 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d31f00b7f7
commit
429009b0f1
@ -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
Block a user