diff options
author | Chris Lattner <sabre@nondot.org> | 2005-08-24 18:30:00 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-08-24 18:30:00 +0000 |
commit | e39db07713641cb933d1183a343ffe4eb8f44492 (patch) | |
tree | fa69412ed53aad86f916c1d0af185201021fc8e8 /lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp | |
parent | a3c4454c5fb70ab94c7de4faf2600ed729fffda0 (diff) |
Fix pasto that prevented VT ndoes from showing up in -view-isel-dags correctly
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23021 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp index 060102c8fc..bb0524db69 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp @@ -89,7 +89,7 @@ std::string DOTGraphTraits<SelectionDAG*>::getNodeLabel(const SDNode *Node, else Op += "<null:" + itostr(M->getOffset()) + ">"; } else if (const VTSDNode *N = dyn_cast<VTSDNode>(Node)) { - std::cerr << ":" << getValueTypeString(N->getVT()); + Op = Op + " VT=" + getValueTypeString(N->getVT()); } return Op; } |