diff options
author | Chris Lattner <sabre@nondot.org> | 2006-01-28 00:18:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-01-28 00:18:58 +0000 |
commit | fb16a62fbab4330b9ab5e4f0a6ec450b4fcbf2a9 (patch) | |
tree | 3878cfbfdd87e3bede30c17c9238d88dc2fb3e66 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | b95594b2f07c2f0d5ee3f931b1b69f146576f8d8 (diff) | |
download | bcm5719-llvm-fb16a62fbab4330b9ab5e4f0a6ec450b4fcbf2a9.tar.gz bcm5719-llvm-fb16a62fbab4330b9ab5e4f0a6ec450b4fcbf2a9.zip |
Remove the ISD::CALL and ISD::TAILCALL nodes
llvm-svn: 25721
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 60f062847fc..53fbb057365 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -374,7 +374,7 @@ void SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) { // flag result (which cannot be CSE'd) or is one of the special cases that are // not subject to CSE. if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag && - N->getOpcode() != ISD::CALL && N->getOpcode() != ISD::CALLSEQ_START && + N->getOpcode() != ISD::CALLSEQ_START && N->getOpcode() != ISD::CALLSEQ_END && !N->isTargetOpcode()) { N->dump(); @@ -2096,8 +2096,6 @@ const char *SDNode::getOperationName(const SelectionDAG *G) const { case ISD::BR_CC: return "br_cc"; case ISD::BRTWOWAY_CC: return "brtwoway_cc"; case ISD::RET: return "ret"; - case ISD::CALL: return "call"; - case ISD::TAILCALL:return "tailcall"; case ISD::CALLSEQ_START: return "callseq_start"; case ISD::CALLSEQ_END: return "callseq_end"; |