Add explicit #includes of <iostream>
authorChris Lattner <sabre@nondot.org>
Sun, 22 Jan 2006 22:53:01 +0000 (22:53 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 22 Jan 2006 22:53:01 +0000 (22:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25509 91177308-0d34-0410-b5e6-96231b3b80d8

17 files changed:
lib/Analysis/DataStructure/Local.cpp
lib/Analysis/DataStructure/Steensgaard.cpp
lib/Support/ToolRunner.cpp
lib/Target/PowerPC/PPCCodeEmitter.cpp
lib/Target/Sparc/SparcV8ISelSimple.cpp
lib/Target/SparcV8/SparcV8ISelSimple.cpp
lib/Target/SparcV9/ModuloScheduling/MSSchedule.cpp
lib/Target/SparcV9/ModuloScheduling/MSScheduleSB.cpp
lib/Target/SparcV9/ModuloScheduling/MSchedGraph.cpp
lib/Target/SparcV9/ModuloScheduling/MSchedGraphSB.cpp
lib/Target/SparcV9/SparcV9CodeEmitter.cpp
lib/Target/SparcV9/SparcV9JITInfo.cpp
lib/Transforms/ExprTypeConvert.cpp
lib/Transforms/Instrumentation/TraceBasicBlocks.cpp
lib/Transforms/Utils/CodeExtractor.cpp
lib/Transforms/Utils/SimplifyCFG.cpp
tools/bugpoint/ToolRunner.cpp

index 2ef4aa8af550e3b2be57799a97ff88dbc5df2b0c..2b0ac90c6c2a5b67610bf1b84f896371f80741ee 100644 (file)
@@ -24,6 +24,7 @@
 #include "llvm/Support/CommandLine.h"
 #include "llvm/Support/Debug.h"
 #include "llvm/Support/Timer.h"
+#include <iostream>
 
 // FIXME: This should eventually be a FunctionPass that is automatically
 // aggregated into a Pass.
index ec0bc1f2b208340521ec2783547cb2b611c9e8f9..8a8391ff2a2aae5efd9f6aa1d50392f911d363ba 100644 (file)
@@ -20,6 +20,7 @@
 #include "llvm/Analysis/Passes.h"
 #include "llvm/Module.h"
 #include "llvm/Support/Debug.h"
+#include <iostream>
 using namespace llvm;
 
 namespace {
index 6480c23cd8e9011bc0de4b8527a1be241c55d281..a9b68deecabacab24c6bf77d7667bba5a9c70eaf 100644 (file)
@@ -19,6 +19,7 @@
 #include "llvm/Support/FileUtilities.h"
 #include <fstream>
 #include <sstream>
+#include <iostream>
 using namespace llvm;
 
 ToolExecutionError::~ToolExecutionError() throw() { }
index bda49a8095a05a75b061a36be346365c72929855..d9d854bbfa47a8b3980e6c5e9de548711344f1c6 100644 (file)
@@ -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 {
index df668825a6f26e2acadadceb28ea6c712e6abeed..f10859d5b9722a2c8d7bff042aca33af33ce4372 100644 (file)
@@ -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 {
index df668825a6f26e2acadadceb28ea6c712e6abeed..f10859d5b9722a2c8d7bff042aca33af33ce4372 100644 (file)
@@ -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 {
index a5dc60bed7ca36d9ba4544ae821fa5c7b9c7fc67..52d53243f9e49a27230300b227011826a967b039 100644 (file)
@@ -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
index 23697b83a2407db6f9badd90e089a2ffe896b810..487fb336e067ad3e6c51535e2c91949dfe257c42 100644 (file)
@@ -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
index ec68a968e28528b127eaa1a980222c0433e79822..d9b1f9b12029b9c5a2a3e839a9fde69ce7fc8ef5 100644 (file)
@@ -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
index 0d3d720ea5dfdc42d00fb65210c276615984330b..bd879f87786e460662460f91c0be9650bcc3e494 100644 (file)
@@ -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
index d977ff94ca3869d5466cfa70282afd28c05db32e..d691a10f76322cc92ee90de1f7e66d02b03a6dc5 100644 (file)
@@ -36,6 +36,7 @@
 #include "SparcV9CodeEmitter.h"
 #include "SparcV9Relocations.h"
 #include "MachineFunctionInfo.h"
+#include <iostream>
 using namespace llvm;
 
 bool SparcV9TargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
index c1a366ba415c6d162622a17afd9d99b4f5abc8ca..2aefab418abf8bd2dd20601fae80bd0adf93cb37 100644 (file)
@@ -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
index 7ed0d42f1407612f0e97b3759c3b949d0b6bed9d..56cb04944f167240207fb2bc1dcd6825b14c64c2 100644 (file)
@@ -19,6 +19,7 @@
 #include "llvm/ADT/STLExtras.h"
 #include "llvm/Support/Debug.h"
 #include <algorithm>
+#include <iostream>
 using namespace llvm;
 
 static bool OperandConvertibleToType(User *U, Value *V, const Type *Ty,
index 2d2a259f339a9a636bf822ddad08e82eac8c0d53..66a1b22915b57a7ab0db2cdbae03cc5019335f07 100644 (file)
@@ -23,6 +23,7 @@
 #include "ProfilingUtils.h"
 #include "llvm/Support/Debug.h"
 #include <set>
+#include <iostream>
 using namespace llvm;
 
 namespace {
index 85b9dcb131b44e9fb5d4d23769f0212e72d392ba..43324acf607e5a18a5a9eb749fea8dc05c4f93de 100644 (file)
@@ -29,6 +29,7 @@
 #include "llvm/ADT/StringExtras.h"
 #include <algorithm>
 #include <set>
+#include <iostream>
 using namespace llvm;
 
 // Provide a command-line option to aggregate function arguments into a struct
index da8541659b7b02284772babb7b60c0256bb9f7cc..1159cd36f5eccab7018b10b28912031929c8e764 100644 (file)
@@ -23,6 +23,7 @@
 #include <functional>
 #include <set>
 #include <map>
+#include <iostream>
 using namespace llvm;
 
 /// SafeToMergeTerminators - Return true if it is safe to merge these two
index 6480c23cd8e9011bc0de4b8527a1be241c55d281..a9b68deecabacab24c6bf77d7667bba5a9c70eaf 100644 (file)
@@ -19,6 +19,7 @@
 #include "llvm/Support/FileUtilities.h"
 #include <fstream>
 #include <sstream>
+#include <iostream>
 using namespace llvm;
 
 ToolExecutionError::~ToolExecutionError() throw() { }