[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:
parent
8bfb353bb3
commit
fffcd3e48e
|
|
@ -4410,6 +4410,8 @@ void X86DAGToDAGISel::Select(SDNode *Node) {
|
|||
ReplaceNode(Node, CNode);
|
||||
return;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue