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

for correctness' sake, it should be there.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106229 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jim Grosbach 2010-06-17 17:58:54 +00:00
parent b56ce8171e
commit 59c38f31ac

View File

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