diff options
author | Nate Begeman <natebegeman@mac.com> | 2007-01-29 22:58:52 +0000 |
---|---|---|
committer | Nate Begeman <natebegeman@mac.com> | 2007-01-29 22:58:52 +0000 |
commit | eda5997cc8e2ddaea20bc5cbb211622294320af7 (patch) | |
tree | 3c2896c81c262ed0f94ed51c8fefaf5c6423a0db /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | e3b09fbbb04af77f8d9cde3e258fd3e34b83fe6e (diff) | |
download | bcm5719-llvm-eda5997cc8e2ddaea20bc5cbb211622294320af7.tar.gz bcm5719-llvm-eda5997cc8e2ddaea20bc5cbb211622294320af7.zip |
Finish off bug 680, allowing targets to custom lower frame and return
address nodes.
llvm-svn: 33636
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 97fb8c5a049..8bed6f7a26f 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -2665,6 +2665,8 @@ const char *SDNode::getOperationName(const SelectionDAG *G) const { case ISD::FrameIndex: return "FrameIndex"; case ISD::JumpTable: return "JumpTable"; case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE"; + case ISD::RETURNADDR: return "RETURNADDR"; + case ISD::FRAMEADDR: return "FRAMEADDR"; case ISD::ConstantPool: return "ConstantPool"; case ISD::ExternalSymbol: return "ExternalSymbol"; case ISD::INTRINSIC_WO_CHAIN: { |