Add #include <iostream> since Value.h does not #include it any more.
[oota-llvm.git] / lib / Target / SparcV9 / InstrSelection / InstrForest.cpp
index ee172fdd0c81be06913bf05e355f25cfa4966258..675bc2d58abb43e6ff3bea4819ecb7531ef83668 100644 (file)
@@ -28,6 +28,7 @@
 #include "llvm/CodeGen/MachineInstr.h"
 #include "Support/STLExtras.h"
 #include "Config/alloca.h"
+#include <iostream>
 
 namespace llvm {
 
@@ -123,18 +124,14 @@ void
 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 {