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:
939b388
)
Add missing break in AArch64DAGToDAGISel::Select() switch case
author
Mehdi Amini
<mehdi.amini@apple.com>
Sun, 23 Aug 2015 00:42:57 +0000
(
00:42
+0000)
committer
Mehdi Amini
<mehdi.amini@apple.com>
Sun, 23 Aug 2015 00:42:57 +0000
(
00:42
+0000)
Reported by coverity.
From: Mehdi Amini <mehdi.amini@apple.com>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@245800
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
b/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
index d5147e026a51363b2b0f9b1ba1ff77e59aba0cbb..d93e59ccf77ce984031f4e0f2bab497e1b0e963f 100644
(file)
--- a/
lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
+++ b/
lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
@@
-2904,6
+2904,7
@@
SDNode *AArch64DAGToDAGISel::Select(SDNode *Node) {
break;
}
}
+ break;
}
case AArch64ISD::LD2post: {
if (VT == MVT::v8i8)