Don't mash stuff together.
[oota-llvm.git] / 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;
 }