Add missing break in AArch64DAGToDAGISel::Select() switch case

Reported by coverity.

From: Mehdi Amini <mehdi.amini@apple.com>
llvm-svn: 245800
This commit is contained in:
Mehdi Amini 2015-08-23 00:42:57 +00:00
parent 5aa7bd7d62
commit a758398833
1 changed files with 1 additions and 0 deletions

View File

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