aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2008-05-12 19:46:27 +0000
committerTanya Lattner <tonic@nondot.org>2008-05-12 19:46:27 +0000
commit30c8db9aa9e03b6eeb9b290ff28ab61aef4c1f68 (patch)
tree7308ba15bfe754ae687bc1b765cfb8b82c4aa066
parent4231f713b9c376b7c54e5d8806433189dfb98c24 (diff)
downloadllvm-30c8db9aa9e03b6eeb9b290ff28ab61aef4c1f68.zip
llvm-30c8db9aa9e03b6eeb9b290ff28ab61aef4c1f68.tar.gz
llvm-30c8db9aa9e03b6eeb9b290ff28ab61aef4c1f68.tar.bz2
Merge from mainline.
Fix a missing break in the ISD::FLT_ROUNDS_ handling. llvm-svn: 50989
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
index 4aa38cd..dcdc554 100644
--- a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
+++ b/llvm/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);