diff options
author | Chris Lattner <sabre@nondot.org> | 2006-01-15 08:39:35 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-01-15 08:39:35 +0000 |
commit | cc0aad20dd1bac26f7da21fb9720df76cc3c26e7 (patch) | |
tree | e24cc26edf0604a89f964c777bc6bb3aaf314f18 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 7c419078876ca16ec82d4ddc5301f8fdaf0fe39e (diff) |
add a missing node name
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25327 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 0936ccee32..12c909e86a 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -1899,6 +1899,7 @@ const char *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"; // Unary operators case ISD::FABS: return "fabs"; |