diff options
author | Chris Lattner <sabre@nondot.org> | 2005-05-12 23:24:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-05-12 23:24:06 +0000 |
commit | 16cd04d26c53c6f81313cafb85f6c0e7a07cdff6 (patch) | |
tree | 6ee92b0e6e5c8c53605bf545d813b78f1f8f0c71 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | b794107416227c14ed7040eb2503757d04ec7ddd (diff) |
rename the ADJCALLSTACKDOWN/ADJCALLSTACKUP nodes to be CALLSEQ_START/BEGIN.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21915 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 1ca213b444..6fa0d926a7 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -1194,7 +1194,7 @@ SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT, // Memoize this node if possible. SDNode *N; - if (Opcode != ISD::ADJCALLSTACKDOWN && Opcode != ISD::ADJCALLSTACKUP) { + if (Opcode != ISD::CALLSEQ_START && Opcode != ISD::CALLSEQ_END) { SDNode *&BON = BinaryOps[std::make_pair(Opcode, std::make_pair(N1, N2))]; if (BON) return SDOperand(BON, 0); @@ -1214,11 +1214,11 @@ SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT, } // setAdjCallChain - This method changes the token chain of an -// ADJCALLSTACKDOWN/UP node to be the specified operand. +// CALLSEQ_START/END node to be the specified operand. void SDNode::setAdjCallChain(SDOperand N) { assert(N.getValueType() == MVT::Other); - assert((getOpcode() == ISD::ADJCALLSTACKDOWN || - getOpcode() == ISD::ADJCALLSTACKUP) && "Cannot adjust this node!"); + assert((getOpcode() == ISD::CALLSEQ_START || + getOpcode() == ISD::CALLSEQ_END) && "Cannot adjust this node!"); Operands[0].Val->removeUser(this); Operands[0] = N; @@ -1690,8 +1690,8 @@ const char *SDNode::getOperationName() const { case ISD::BRCONDTWOWAY: return "brcondtwoway"; case ISD::RET: return "ret"; case ISD::CALL: return "call"; - case ISD::ADJCALLSTACKDOWN: return "adjcallstackdown"; - case ISD::ADJCALLSTACKUP: return "adjcallstackup"; + case ISD::CALLSEQ_START: return "callseq_end"; + case ISD::CALLSEQ_END: return "callseq_start"; // Other operators case ISD::LOAD: return "load"; |