1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00

add missing break. inconsequential as the code shouldn't be reached, but

for correctness' sake, it should be there.

llvm-svn: 106229
This commit is contained in:
Jim Grosbach 2010-06-17 17:58:54 +00:00
parent 99b7091d9d
commit ac23214fd8

View File

@ -2393,6 +2393,7 @@ void SelectionDAGLegalize::ExpandNode(SDNode *Node,
case ISD::ATOMIC_CMP_SWAP: { case ISD::ATOMIC_CMP_SWAP: {
assert (0 && "atomic intrinsic not lowered!"); assert (0 && "atomic intrinsic not lowered!");
Results.push_back(Node->getOperand(0)); Results.push_back(Node->getOperand(0));
break;
} }
case ISD::DYNAMIC_STACKALLOC: case ISD::DYNAMIC_STACKALLOC:
ExpandDYNAMIC_STACKALLOC(Node, Results); ExpandDYNAMIC_STACKALLOC(Node, Results);