diff options
author | Chris Lattner <sabre@nondot.org> | 2006-05-16 22:53:20 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-05-16 22:53:20 +0000 |
commit | aaa23d953f0bdd68f5b2b68ec8ab2de181adbb90 (patch) | |
tree | 042d3f8ed06e8a765fe4a6574c3463ede4fe384e /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | e33580e5b42eacac6d3c8580cf1a5fa1d5fe9356 (diff) | |
download | bcm5719-llvm-aaa23d953f0bdd68f5b2b68ec8ab2de181adbb90.tar.gz bcm5719-llvm-aaa23d953f0bdd68f5b2b68ec8ab2de181adbb90.zip |
Add a new ISD::CALL node, make the default impl of TargetLowering::LowerCallTo
produce it.
llvm-svn: 28338
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index cf1d41f705f..41c1193b027 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -2841,6 +2841,7 @@ const char *SDNode::getOperationName(const SelectionDAG *G) const { case ISD::INLINEASM: return "inlineasm"; case ISD::HANDLENODE: return "handlenode"; case ISD::FORMAL_ARGUMENTS: return "formal_arguments"; + case ISD::CALL: return "call"; // Unary operators case ISD::FABS: return "fabs"; |