aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-01-16 07:28:31 +0000
committerChris Lattner <sabre@nondot.org>2005-01-16 07:28:31 +0000
commit4b7899343eb492b70868fc73450b708834a3cf99 (patch)
tree3b7a0c026991fd2897d914094cf4c1988115ad2b /lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
parentcba82f9339566cef76ecb062980e40913e6ccc23 (diff)
Don't mash stuff together.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19611 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
index 00f8657756..b2e0cb761f 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
@@ -91,7 +91,7 @@ std::string DOTGraphTraits<SelectionDAG*>::getNodeLabel(const SDNode *Node,
dyn_cast<ExternalSymbolSDNode>(Node)) {
Op += "'" + std::string(ES->getSymbol()) + "'";
} else if (const MVTSDNode *M = dyn_cast<MVTSDNode>(Node)) {
- Op = Op + "ty=" + MVT::getValueTypeString(M->getExtraValueType());
+ Op = Op + " ty=" + MVT::getValueTypeString(M->getExtraValueType());
}
return Op;
}