From: Dan Gohman Date: Mon, 12 May 2008 16:07:15 +0000 (+0000) Subject: Fix a missing break in the ISD::FLT_ROUNDS_ handling. Patch by giuma! X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=9ab9ee8209c313713a54db2d9451751d8cfb9e2a;p=oota-llvm.git 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 --- diff --git a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp index 4aa38cd1fab..dcdc554b5f2 100644 --- a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp +++ b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp @@ -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);