[llvm-commits] 	CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
    Chris Lattner 
    lattner at cs.uiuc.edu
       
    Sat Jan 15 23:28:43 PST 2005
    
    
  
Changes in directory llvm/lib/CodeGen/SelectionDAG:
SelectionDAGPrinter.cpp updated: 1.7 -> 1.8
---
Log message:
Don't mash stuff together.
---
Diffs of the changes:  (+1 -1)
Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp:1.7 llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp:1.8
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp:1.7	Sat Jan 15 15:11:37 2005
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp	Sun Jan 16 01:28:31 2005
@@ -91,7 +91,7 @@
              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;
 }
    
    
More information about the llvm-commits
mailing list