diff options
author | Nate Begeman <natebegeman@mac.com> | 2005-08-10 20:51:12 +0000 |
---|---|---|
committer | Nate Begeman <natebegeman@mac.com> | 2005-08-10 20:51:12 +0000 |
commit | 9373a81e53ce5f9f2c06c4209b8b886605aece08 (patch) | |
tree | 8006fb815afc6fee4b87e6f7c026b46cd9e5e0e6 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | b4138c475e30a5ec91e9a51ffd7c1dc7a11f3eed (diff) |
Add new node, SELECT_CC. This node is for targets that don't natively
implement SELECT.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22755 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 549b48042f..a20c517630 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -686,8 +686,6 @@ SDOperand SelectionDAG::SimplifySetCC(MVT::ValueType VT, SDOperand N1, return SDOperand(); } - - /// getNode - Gets or creates the specified node. /// SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT) { @@ -1702,6 +1700,7 @@ const char *SDNode::getOperationName() const { case ISD::SETCC: return "setcc"; case ISD::SELECT: return "select"; + case ISD::SELECT_CC: return "select_cc"; case ISD::ADD_PARTS: return "add_parts"; case ISD::SUB_PARTS: return "sub_parts"; case ISD::SHL_PARTS: return "shl_parts"; |