projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eae216c
)
Fix unintentional fallthrough. Patch by Edmund Grimley-Evans <Edmund.Grimley-Evans...
author
Jim Grosbach
<grosbach@apple.com>
Thu, 6 May 2010 15:32:49 +0000
(15:32 +0000)
committer
Jim Grosbach
<grosbach@apple.com>
Thu, 6 May 2010 15:32:49 +0000
(15:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103181
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/ARM/ARMISelDAGToDAG.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/ARM/ARMISelDAGToDAG.cpp
b/lib/Target/ARM/ARMISelDAGToDAG.cpp
index 57a12f09e046888210a8ca38ef7f6eba173e2299..a3c600f1978fb529378a5e038eef774407d171f0 100644
(file)
--- a/
lib/Target/ARM/ARMISelDAGToDAG.cpp
+++ b/
lib/Target/ARM/ARMISelDAGToDAG.cpp
@@
-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: {