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

Chris Lattner lattner at cs.uiuc.edu
Wed Jul 14 19:14:39 PDT 2004



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

InstrForest.cpp updated: 1.54 -> 1.55

---
Log message:

Patches towards fixing PR341: http://llvm.cs.uiuc.edu/PR341 


---
Diffs of the changes:  (+3 -3)

Index: llvm/lib/Target/SparcV9/InstrSelection/InstrForest.cpp
diff -u llvm/lib/Target/SparcV9/InstrSelection/InstrForest.cpp:1.54 llvm/lib/Target/SparcV9/InstrSelection/InstrForest.cpp:1.55
--- llvm/lib/Target/SparcV9/InstrSelection/InstrForest.cpp:1.54	Sun Jul  4 07:19:56 2004
+++ llvm/lib/Target/SparcV9/InstrSelection/InstrForest.cpp	Wed Jul 14 21:14:29 2004
@@ -124,21 +124,21 @@
 VRegNode::dumpNode(int indent) const {
   for (int i=0; i < indent; i++)
     std::cerr << "    ";
-    std::cerr << "VReg " << getValue() << "\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() << "\n";
+  std::cerr << "Constant " << *getValue() << "\n";
 }
 
 void LabelNode::dumpNode(int indent) const {
   for (int i=0; i < indent; i++)
     std::cerr << "    ";
   
-  std::cerr << "Label " << getValue() << "\n";
+  std::cerr << "Label " << *getValue() << "\n";
 }
 
 //------------------------------------------------------------------------





More information about the llvm-commits mailing list