Add missing break in AArch64DAGToDAGISel::Select() switch case
authorMehdi Amini <mehdi.amini@apple.com>
Sun, 23 Aug 2015 00:42:57 +0000 (00:42 +0000)
committerMehdi 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

index d5147e026a51363b2b0f9b1ba1ff77e59aba0cbb..d93e59ccf77ce984031f4e0f2bab497e1b0e963f 100644 (file)
@@ -2904,6 +2904,7 @@ SDNode *AArch64DAGToDAGISel::Select(SDNode *Node) {
       break;
     }
     }
+    break;
   }
   case AArch64ISD::LD2post: {
     if (VT == MVT::v8i8)