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 | 9597b33d58a6e902d2a171ec6593eaf907d4074c (patch) | |
tree | 9643ad555628bccaa495a76da1b07a50cb66109f /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | e5ca28b74dbcbebc1a37eb089c9e20a1d3fb2dfb (diff) | |
download | bcm5719-llvm-9597b33d58a6e902d2a171ec6593eaf907d4074c.tar.gz bcm5719-llvm-9597b33d58a6e902d2a171ec6593eaf907d4074c.zip |
add a missing node name
llvm-svn: 25327
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 0936ccee328..12c909e86af 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/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"; |