forked from OSchip/llvm-project
Fix a missing break in the ISD::FLT_ROUNDS_ handling. Patch by giuma!
llvm-svn: 50967
This commit is contained in:
parent
6e31321043
commit
ecb77385ab
|
@ -3999,6 +3999,7 @@ SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
|
||||||
Result = DAG.getConstant(1, VT);
|
Result = DAG.getConstant(1, VT);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
case ISD::TRAP: {
|
case ISD::TRAP: {
|
||||||
MVT::ValueType VT = Node->getValueType(0);
|
MVT::ValueType VT = Node->getValueType(0);
|
||||||
|
|
Loading…
Reference in New Issue