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

llvm-svn: 50967
This commit is contained in:
Dan Gohman 2008-05-12 16:07:15 +00:00
parent 6e31321043
commit ecb77385ab
1 changed files with 1 additions and 0 deletions

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);