[llvm-commits] CVS: llvm/lib/Target/SparcV9/InstrSelection/InstrForest.cpp

Chris Lattner lattner at cs.uiuc.edu
Sat Jun 26 14:37:01 PDT 2004


Changes in directory llvm/lib/Target/SparcV9/InstrSelection:

InstrForest.cpp updated: 1.52 -> 1.53

---
Log message:

There is no reason to print ValueType here


---
Diffs of the changes:  (+2 -6)

Index: llvm/lib/Target/SparcV9/InstrSelection/InstrForest.cpp
diff -u llvm/lib/Target/SparcV9/InstrSelection/InstrForest.cpp:1.52 llvm/lib/Target/SparcV9/InstrSelection/InstrForest.cpp:1.53
--- llvm/lib/Target/SparcV9/InstrSelection/InstrForest.cpp:1.52	Thu Jun 17 13:17:12 2004
+++ llvm/lib/Target/SparcV9/InstrSelection/InstrForest.cpp	Sat Jun 26 14:36:34 2004
@@ -123,18 +123,14 @@
 VRegNode::dumpNode(int indent) const {
   for (int i=0; i < indent; i++)
     std::cerr << "    ";
-  
-  std::cerr << "VReg " << getValue() << "\t(type "
-            << (int) getValue()->getValueType() << ")" << "\n";
+    std::cerr << "VReg " << getValue() << "\n";
 }
 
 void
 ConstantNode::dumpNode(int indent) const {
   for (int i=0; i < indent; i++)
     std::cerr << "    ";
-  
-  std::cerr << "Constant " << getValue() << "\t(type "
-            << (int) getValue()->getValueType() << ")" << "\n";
+  std::cerr << "Constant " << getValue() << "\n";
 }
 
 void LabelNode::dumpNode(int indent) const {





More information about the llvm-commits mailing list