aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2005-10-13 03:10:46 +0000
committerNate Begeman <natebegeman@mac.com>2005-10-13 03:10:46 +0000
commitced9d5dcd307743a373dd6e1e036a565a73d2667 (patch)
tree96d3a3adcc75003c78a366208535510b4de77b7a
parent765784ad760ee6cc504d79e4966c272387c313f8 (diff)
SimplifySelectCC is dead
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23705 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/CodeGen/SelectionDAG.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h
index bfd7113fab..44d14a81e5 100644
--- a/include/llvm/CodeGen/SelectionDAG.h
+++ b/include/llvm/CodeGen/SelectionDAG.h
@@ -358,12 +358,6 @@ private:
SDOperand SimplifySetCC(MVT::ValueType VT, SDOperand N1,
SDOperand N2, ISD::CondCode Cond);
- /// SimplifySelectCC - Try to simplify a select_cc built with the specified
- /// operands and cc. This can be used to simplify both the select_cc node,
- /// and a select node whose first operand is a setcc.
- SDOperand SimplifySelectCC(SDOperand N1, SDOperand N2, SDOperand N3,
- SDOperand N4, ISD::CondCode CC);
-
// Maps to auto-CSE operations.
std::map<std::pair<unsigned, MVT::ValueType>, SDNode *> NullaryOps;
std::map<std::pair<unsigned, std::pair<SDOperand, MVT::ValueType> >,