Don't mash stuff together.
authorChris Lattner <sabre@nondot.org>
Sun, 16 Jan 2005 07:28:31 +0000 (07:28 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 16 Jan 2005 07:28:31 +0000 (07:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19611 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp

index 00f865775622661328f28f139435d3a36ae2649c..b2e0cb761f76d9493012fe4c0bbda28e2a2eea3a 100644 (file)
@@ -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;
 }