diff options
| author | Jim Laskey <jlaskey@mac.com> | 2007-01-26 14:34:52 +0000 |
|---|---|---|
| committer | Jim Laskey <jlaskey@mac.com> | 2007-01-26 14:34:52 +0000 |
| commit | f9e5445ed48c1f113a27348ce8afa1062e9717b4 (patch) | |
| tree | a12702cb093e23c3f9ab92e5f033d410900b9e79 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
| parent | f773e145470ff8e6a4bc4e8eb174edca20c97dac (diff) | |
| download | bcm5719-llvm-f9e5445ed48c1f113a27348ce8afa1062e9717b4.tar.gz bcm5719-llvm-f9e5445ed48c1f113a27348ce8afa1062e9717b4.zip | |
Make LABEL a builtin opcode.
llvm-svn: 33537
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 5f92df3f2d5..97fb8c5a049 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -2691,6 +2691,7 @@ const char *SDNode::getOperationName(const SelectionDAG *G) const { case ISD::UNDEF: return "undef"; case ISD::MERGE_VALUES: return "mergevalues"; case ISD::INLINEASM: return "inlineasm"; + case ISD::LABEL: return "label"; case ISD::HANDLENODE: return "handlenode"; case ISD::FORMAL_ARGUMENTS: return "formal_arguments"; case ISD::CALL: return "call"; @@ -2811,7 +2812,6 @@ 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()) { |

