mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-14 15:39:06 +00:00
Fix unintentional fallthrough. Patch by Edmund Grimley-Evans <Edmund.Grimley-Evans@arm.com>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103181 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
eae216c6d3
commit
d31f00b7f7
@ -1866,7 +1866,7 @@ SDNode *ARMDAGToDAGISel::Select(SDNode *N) {
|
||||
unsigned IntNo = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
|
||||
switch (IntNo) {
|
||||
default:
|
||||
break;
|
||||
return SelectCode(N);
|
||||
|
||||
case Intrinsic::arm_neon_vld1: {
|
||||
unsigned DOpcodes[] = { ARM::VLD1d8, ARM::VLD1d16,
|
||||
@ -1988,6 +1988,7 @@ SDNode *ARMDAGToDAGISel::Select(SDNode *N) {
|
||||
return SelectVLDSTLane(N, false, 4, DOpcodes, QOpcodes0, QOpcodes1);
|
||||
}
|
||||
}
|
||||
llvm_unreachable("Unhandled intrinsic");
|
||||
}
|
||||
|
||||
case ISD::CONCAT_VECTORS: {
|
||||
|
Loading…
Reference in New Issue
Block a user