diff options
author | Dan Gohman <gohman@apple.com> | 2007-07-05 20:15:43 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-07-05 20:15:43 +0000 |
commit | a282694acfa8e0c8f93f8525ccf5757d7df4ffde (patch) | |
tree | 5b57068f36e48fb2a9fa64f6458037f277df7bb4 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | d258e8058308dea58ffb27bb5bfee8e7c46a5a21 (diff) | |
download | bcm5719-llvm-a282694acfa8e0c8f93f8525ccf5757d7df4ffde.tar.gz bcm5719-llvm-a282694acfa8e0c8f93f8525ccf5757d7df4ffde.zip |
Make the debug string for ISD::MERGE_VALUES consistent with the others.
llvm-svn: 37922
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 9eee1984af7..9687a52cdab 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -3384,7 +3384,7 @@ std::string SDNode::getOperationName(const SelectionDAG *G) const { case ISD::CopyToReg: return "CopyToReg"; case ISD::CopyFromReg: return "CopyFromReg"; case ISD::UNDEF: return "undef"; - case ISD::MERGE_VALUES: return "mergevalues"; + case ISD::MERGE_VALUES: return "merge_values"; case ISD::INLINEASM: return "inlineasm"; case ISD::LABEL: return "label"; case ISD::HANDLENODE: return "handlenode"; |