diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-01-05 01:25:28 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-01-05 01:25:28 +0000 |
commit | 762e9ec06c62131bd5967b5fe855c543c7d1af67 (patch) | |
tree | 14ff31f5a1f97299d4dac2e56bdcc1e0080d044d /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 45e19098a6a723bd4b5d66ef56f32798f0fafa95 (diff) | |
download | bcm5719-llvm-762e9ec06c62131bd5967b5fe855c543c7d1af67.tar.gz bcm5719-llvm-762e9ec06c62131bd5967b5fe855c543c7d1af67.zip |
Added initial support for DEBUG_LABEL allowing debug specific labels to be
inserted in the code.
llvm-svn: 25104
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 853b48c9c8e..b067c122ac7 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -2005,6 +2005,7 @@ const char *SDNode::getOperationName(const SelectionDAG *G) const { // Debug info case ISD::LOCATION: return "location"; case ISD::DEBUG_LOC: return "debug_loc"; + case ISD::DEBUG_LABEL: return "debug_label"; case ISD::CONDCODE: switch (cast<CondCodeSDNode>(this)->get()) { |