diff options
author | Chris Lattner <sabre@nondot.org> | 2006-04-12 16:20:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-04-12 16:20:43 +0000 |
commit | d3b504ae10688341558c767f44fe46e440d5846e (patch) | |
tree | 65d6503dd7c4f4438e20666f04807b406515eb3a /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 29be057d92d9f25890723ccd2c209380bc374b2e (diff) | |
download | bcm5719-llvm-d3b504ae10688341558c767f44fe46e440d5846e.tar.gz bcm5719-llvm-d3b504ae10688341558c767f44fe46e440d5846e.zip |
Implement support for the formal_arguments node. To get this, targets shouldcustom legalize it and remove their XXXTargetLowering::LowerArguments overload
llvm-svn: 27604
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 b95a85edd26..bcdbef17ec4 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -2714,6 +2714,7 @@ const char *SDNode::getOperationName(const SelectionDAG *G) const { case ISD::MERGE_VALUES: return "mergevalues"; case ISD::INLINEASM: return "inlineasm"; case ISD::HANDLENODE: return "handlenode"; + case ISD::FORMAL_ARGUMENTS: return "formal_arguments"; // Unary operators case ISD::FABS: return "fabs"; |