Skip to content

Commit 30c8db9

Browse files
committed
Merge from mainline.
Fix a missing break in the ISD::FLT_ROUNDS_ handling. llvm-svn: 50989
1 parent 4231f71 commit 30c8db9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3999,6 +3999,7 @@ SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
39993999
Result = DAG.getConstant(1, VT);
40004000
break;
40014001
}
4002+
break;
40024003
}
40034004
case ISD::TRAP: {
40044005
MVT::ValueType VT = Node->getValueType(0);

0 commit comments

Comments
 (0)