Fix a missing break in the ISD::FLT_ROUNDS_ handling. Patch by giuma!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50967 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2008-05-12 16:07:15 +00:00
parent 9658a2cb3d
commit 9ab9ee8209

View File

@ -3999,6 +3999,7 @@ SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Result = DAG.getConstant(1, VT);
break;
}
break;
}
case ISD::TRAP: {
MVT::ValueType VT = Node->getValueType(0);