[X86] Add a 'break;' to the end of the last case in a switch to avoid surprising the next person to add a case after this one. NFC

This commit is contained in:
Craig Topper 2019-11-18 12:17:49 -08:00
parent 8bfb353bb3
commit fffcd3e48e
1 changed files with 2 additions and 0 deletions

View File

@ -4410,6 +4410,8 @@ void X86DAGToDAGISel::Select(SDNode *Node) {
ReplaceNode(Node, CNode);
return;
}
break;
}
}