From: Chris Lattner Date: Sun, 15 Jan 2006 08:39:35 +0000 (+0000) Subject: add a missing node name X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=cc0aad20dd1bac26f7da21fb9720df76cc3c26e7;p=oota-llvm.git add a missing node name git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25327 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 0936ccee328..12c909e86af 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";