diff options
author | Chris Lattner <sabre@nondot.org> | 2005-04-07 18:58:54 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-04-07 18:58:54 +0000 |
commit | dfed7355c9e168d6fe3fb056eac6d576942a6af3 (patch) | |
tree | 6816c7fd596f6ae68afd5a4101e04bf73d30d1ff /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 9807ac5d3ca1cbea573e5ce6649072b270ee6ab8 (diff) | |
download | bcm5719-llvm-dfed7355c9e168d6fe3fb056eac6d576942a6af3.tar.gz bcm5719-llvm-dfed7355c9e168d6fe3fb056eac6d576942a6af3.zip |
Remove somethign I had for testing
llvm-svn: 21144
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 760f42471dc..7faf19fd72f 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -399,7 +399,7 @@ SDOperand SelectionDAG::getSetCC(ISD::CondCode Cond, MVT::ValueType VT, case ISD::SETLE: return getConstant((int64_t)C1 <= (int64_t)C2, VT); case ISD::SETGE: return getConstant((int64_t)C1 >= (int64_t)C2, VT); } - } else if (1) { + } else { uint64_t MinVal, MaxVal; unsigned OperandBitSize = MVT::getSizeInBits(N2C->getValueType(0)); if (ISD::isSignedIntSetCC(Cond)) { |