Remove an unncessary argument to SimplifySelectCC and add an additional

assert when creating a select_cc node.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22780 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nate Begeman
2005-08-13 06:14:17 +00:00
parent 32c392a3a5
commit ff66368a5f
2 changed files with 12 additions and 11 deletions

View File

@@ -222,9 +222,8 @@ private:
/// 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(MVT::ValueType VT, ISD::CondCode CC,
SDOperand N1, SDOperand N2, SDOperand N3,
SDOperand N4);
SDOperand SimplifySelectCC(SDOperand N1, SDOperand N2, SDOperand N3,
SDOperand N4, ISD::CondCode CC);
// Maps to auto-CSE operations.
std::map<std::pair<unsigned, std::pair<SDOperand, MVT::ValueType> >,