diff options
| author | Dan Gohman <gohman@apple.com> | 2008-02-27 19:44:57 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2008-02-27 19:44:57 +0000 |
| commit | 18714aeaed2a74bfc85dc5abe24a9193882406c5 (patch) | |
| tree | 2b937a988cae358b7748a2941d2bd310a12addc2 /lib | |
| parent | e8ae2fe2a8cc767f4d7ac55db13bf9adb8e7df70 (diff) | |
Remove the `else', at Evan's insistence.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47686 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp index d34d209ce3..7df4c3f2ac 100644 --- a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp +++ b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp @@ -5746,8 +5746,7 @@ void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){ ExpandOp(Node->getOperand(0), Lo, Hi); if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) return ExpandOp(Hi, Lo, Hi); - else - return ExpandOp(Lo, Lo, Hi); + return ExpandOp(Lo, Lo, Hi); case ISD::EXTRACT_VECTOR_ELT: assert(VT==MVT::i64 && "Do not know how to expand this operator!"); // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types. |
