Add explicit #includes of <iostream>

llvm-svn: 25509
diff --git a/llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp b/llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp
index bda49a8..d9d854b 100644
--- a/llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp
+++ b/llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp
@@ -22,6 +22,7 @@
 #include "llvm/CodeGen/MachineInstrBuilder.h"
 #include "llvm/CodeGen/Passes.h"
 #include "llvm/Support/Debug.h"
+#include <iostream>
 using namespace llvm;
 
 namespace {
diff --git a/llvm/lib/Target/SparcV8/SparcV8ISelSimple.cpp b/llvm/lib/Target/SparcV8/SparcV8ISelSimple.cpp
index df66882..f10859d 100644
--- a/llvm/lib/Target/SparcV8/SparcV8ISelSimple.cpp
+++ b/llvm/lib/Target/SparcV8/SparcV8ISelSimple.cpp
@@ -27,6 +27,7 @@
 #include "llvm/Target/TargetMachine.h"
 #include "llvm/Support/InstVisitor.h"
 #include "llvm/Support/CFG.h"
+#include <iostream>
 using namespace llvm;
 
 namespace {
diff --git a/llvm/lib/Target/SparcV9/ModuloScheduling/MSSchedule.cpp b/llvm/lib/Target/SparcV9/ModuloScheduling/MSSchedule.cpp
index a5dc60b..52d5324 100644
--- a/llvm/lib/Target/SparcV9/ModuloScheduling/MSSchedule.cpp
+++ b/llvm/lib/Target/SparcV9/ModuloScheduling/MSSchedule.cpp
@@ -17,7 +17,7 @@
 #include "llvm/Target/TargetSchedInfo.h"
 #include "../SparcV9Internals.h"
 #include "llvm/CodeGen/MachineInstr.h"
-
+#include <iostream>
 using namespace llvm;
 
 //Check if all resources are free
diff --git a/llvm/lib/Target/SparcV9/ModuloScheduling/MSScheduleSB.cpp b/llvm/lib/Target/SparcV9/ModuloScheduling/MSScheduleSB.cpp
index 23697b8..487fb33 100644
--- a/llvm/lib/Target/SparcV9/ModuloScheduling/MSScheduleSB.cpp
+++ b/llvm/lib/Target/SparcV9/ModuloScheduling/MSScheduleSB.cpp
@@ -17,7 +17,7 @@
 #include "llvm/Target/TargetSchedInfo.h"
 #include "../SparcV9Internals.h"
 #include "llvm/CodeGen/MachineInstr.h"
-
+#include <iostream>
 using namespace llvm;
 
 //Check if all resources are free
diff --git a/llvm/lib/Target/SparcV9/ModuloScheduling/MSchedGraph.cpp b/llvm/lib/Target/SparcV9/ModuloScheduling/MSchedGraph.cpp
index ec68a96..d9b1f9b 100644
--- a/llvm/lib/Target/SparcV9/ModuloScheduling/MSchedGraph.cpp
+++ b/llvm/lib/Target/SparcV9/ModuloScheduling/MSchedGraph.cpp
@@ -13,8 +13,8 @@
 // is provided, a conservative approach of adding dependencies between all
 // loads and stores is taken.
 //===----------------------------------------------------------------------===//
-#define DEBUG_TYPE "ModuloSched"
 
+#define DEBUG_TYPE "ModuloSched"
 #include "MSchedGraph.h"
 #include "../SparcV9RegisterInfo.h"
 #include "../MachineCodeForInstruction.h"
@@ -28,7 +28,7 @@
 #include <cstdlib>
 #include <algorithm>
 #include <set>
-
+#include <iostream>
 using namespace llvm;
 
 //MSchedGraphNode constructor
diff --git a/llvm/lib/Target/SparcV9/ModuloScheduling/MSchedGraphSB.cpp b/llvm/lib/Target/SparcV9/ModuloScheduling/MSchedGraphSB.cpp
index 0d3d720..bd879f8 100644
--- a/llvm/lib/Target/SparcV9/ModuloScheduling/MSchedGraphSB.cpp
+++ b/llvm/lib/Target/SparcV9/ModuloScheduling/MSchedGraphSB.cpp
@@ -13,8 +13,8 @@
 // is provided, a conservative approach of adding dependencies between all
 // loads and stores is taken.
 //===----------------------------------------------------------------------===//
-#define DEBUG_TYPE "ModuloSchedSB"
 
+#define DEBUG_TYPE "ModuloSchedSB"
 #include "MSchedGraphSB.h"
 #include "../SparcV9RegisterInfo.h"
 #include "../MachineCodeForInstruction.h"
@@ -30,7 +30,7 @@
 #include <set>
 #include "llvm/Target/TargetSchedInfo.h"
 #include "../SparcV9Internals.h"
-
+#include <iostream>
 using namespace llvm;
 
 //MSchedGraphSBNode constructor
diff --git a/llvm/lib/Target/SparcV9/SparcV9CodeEmitter.cpp b/llvm/lib/Target/SparcV9/SparcV9CodeEmitter.cpp
index d977ff9..d691a10 100644
--- a/llvm/lib/Target/SparcV9/SparcV9CodeEmitter.cpp
+++ b/llvm/lib/Target/SparcV9/SparcV9CodeEmitter.cpp
@@ -36,6 +36,7 @@
 #include "SparcV9CodeEmitter.h"
 #include "SparcV9Relocations.h"
 #include "MachineFunctionInfo.h"
+#include <iostream>
 using namespace llvm;
 
 bool SparcV9TargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
diff --git a/llvm/lib/Target/SparcV9/SparcV9JITInfo.cpp b/llvm/lib/Target/SparcV9/SparcV9JITInfo.cpp
index c1a366b..2aefab4 100644
--- a/llvm/lib/Target/SparcV9/SparcV9JITInfo.cpp
+++ b/llvm/lib/Target/SparcV9/SparcV9JITInfo.cpp
@@ -17,6 +17,7 @@
 #include "llvm/CodeGen/MachineCodeEmitter.h"
 #include "llvm/Config/alloca.h"
 #include "llvm/Support/Debug.h"
+#include <iostream>
 using namespace llvm;
 
 /// JITCompilerFunction - This contains the address of the JIT function used to