Fix a missing break in the ISD::FLT_ROUNDS_ handling. Patch by giuma!
authorDan Gohman <gohman@apple.com>
Mon, 12 May 2008 16:07:15 +0000 (16:07 +0000)
committerDan Gohman <gohman@apple.com>
Mon, 12 May 2008 16:07:15 +0000 (16:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50967 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/LegalizeDAG.cpp

index 4aa38cd1fab960f5a5877ae6c16bb9aef8025bb7..dcdc554b5f2dff01f8bda76e4f891f035ba767c2 100644 (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);