diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-02-03 01:33:01 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-02-03 01:33:01 +0000 |
commit | 02b5b9cdd64d5780a686d81201113502dbc9bacc (patch) | |
tree | 121ef7034db47ccd31308aaee552da5a46f598d1 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | b7f24de4c8e1de698e75086e2b94f299dad49b4a (diff) | |
download | bcm5719-llvm-02b5b9cdd64d5780a686d81201113502dbc9bacc.tar.gz bcm5719-llvm-02b5b9cdd64d5780a686d81201113502dbc9bacc.zip |
Added case HANDLENODE to getOperationName().
llvm-svn: 25920
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 6f1a263048d..35000c7d36d 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -2266,6 +2266,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::HANDLENODE: return "handlenode"; // Unary operators case ISD::FABS: return "fabs"; |