summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2004-07-21 20:50:33 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2004-07-21 20:50:33 +0000
commit7848e68c1635ccba5a08d55314d4e5aed5ab54b9 (patch)
tree0d319fa163635bd4dbb38296b8077803beef5bd6
parent7d0276624726ddea3245bb7d88c47db59278bf14 (diff)
downloadllvm-7848e68c1635ccba5a08d55314d4e5aed5ab54b9.tar.gz
llvm-7848e68c1635ccba5a08d55314d4e5aed5ab54b9.tar.bz2
llvm-7848e68c1635ccba5a08d55314d4e5aed5ab54b9.tar.xz
These files don't need to include <iostream> since they include "Support/Debug.h".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15089 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Analysis/DataStructure/Local.cpp1
-rw-r--r--lib/Analysis/DataStructure/Steensgaard.cpp1
-rw-r--r--lib/CodeGen/LiveIntervalAnalysis.cpp1
-rw-r--r--lib/CodeGen/ModuloScheduling/MSSchedule.cpp1
-rw-r--r--lib/CodeGen/ModuloScheduling/MSchedGraph.cpp1
-rw-r--r--lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp1
-rw-r--r--lib/CodeGen/RegAllocIterativeScan.cpp1
-rw-r--r--lib/CodeGen/RegAllocLinearScan.cpp1
-rw-r--r--lib/CodeGen/RegAllocLocal.cpp1
-rw-r--r--lib/CodeGen/RegAllocSimple.cpp1
-rw-r--r--lib/CodeGen/TwoAddressInstructionPass.cpp1
-rw-r--r--lib/CodeGen/VirtRegMap.cpp1
-rw-r--r--lib/Support/ToolRunner.cpp1
-rw-r--r--lib/Target/SparcV9/ModuloScheduling/MSSchedule.cpp1
-rw-r--r--lib/Target/SparcV9/ModuloScheduling/MSchedGraph.cpp1
-rw-r--r--lib/Target/SparcV9/ModuloScheduling/ModuloScheduling.cpp1
-rw-r--r--lib/Transforms/ExprTypeConvert.cpp2
-rw-r--r--lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp1
-rw-r--r--lib/Transforms/Instrumentation/ProfilePaths/GraphAuxiliary.cpp1
-rw-r--r--lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp1
-rw-r--r--lib/Transforms/Instrumentation/TraceBasicBlocks.cpp1
-rw-r--r--lib/Transforms/Utils/CodeExtractor.cpp1
-rw-r--r--lib/Transforms/Utils/SimplifyCFG.cpp1
-rw-r--r--tools/bugpoint/ExecutionDriver.cpp1
-rw-r--r--tools/bugpoint/ExtractFunction.cpp1
-rw-r--r--tools/bugpoint/ToolRunner.cpp1
26 files changed, 0 insertions, 27 deletions
diff --git a/lib/Analysis/DataStructure/Local.cpp b/lib/Analysis/DataStructure/Local.cpp
index 7836555c29..34095a2015 100644
--- a/lib/Analysis/DataStructure/Local.cpp
+++ b/lib/Analysis/DataStructure/Local.cpp
@@ -24,7 +24,6 @@
#include "Support/CommandLine.h"
#include "Support/Debug.h"
#include "Support/Timer.h"
-#include <iostream>
// FIXME: This should eventually be a FunctionPass that is automatically
// aggregated into a Pass.
diff --git a/lib/Analysis/DataStructure/Steensgaard.cpp b/lib/Analysis/DataStructure/Steensgaard.cpp
index 5b055dc345..55a6deb048 100644
--- a/lib/Analysis/DataStructure/Steensgaard.cpp
+++ b/lib/Analysis/DataStructure/Steensgaard.cpp
@@ -19,7 +19,6 @@
#include "llvm/Analysis/AliasAnalysis.h"
#include "llvm/Module.h"
#include "Support/Debug.h"
-#include <iostream>
using namespace llvm;
namespace {
diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp
index 4479ea76e3..dc9aab5cd3 100644
--- a/lib/CodeGen/LiveIntervalAnalysis.cpp
+++ b/lib/CodeGen/LiveIntervalAnalysis.cpp
@@ -33,7 +33,6 @@
#include "Support/STLExtras.h"
#include "VirtRegMap.h"
#include <cmath>
-#include <iostream>
using namespace llvm;
diff --git a/lib/CodeGen/ModuloScheduling/MSSchedule.cpp b/lib/CodeGen/ModuloScheduling/MSSchedule.cpp
index 48ddd386fa..dfee1d15be 100644
--- a/lib/CodeGen/ModuloScheduling/MSSchedule.cpp
+++ b/lib/CodeGen/ModuloScheduling/MSSchedule.cpp
@@ -15,7 +15,6 @@
#include "MSSchedule.h"
#include "Support/Debug.h"
#include "llvm/Target/TargetSchedInfo.h"
-#include <iostream>
using namespace llvm;
diff --git a/lib/CodeGen/ModuloScheduling/MSchedGraph.cpp b/lib/CodeGen/ModuloScheduling/MSchedGraph.cpp
index 4898da8e49..b441bea051 100644
--- a/lib/CodeGen/ModuloScheduling/MSchedGraph.cpp
+++ b/lib/CodeGen/ModuloScheduling/MSchedGraph.cpp
@@ -17,7 +17,6 @@
#include "llvm/CodeGen/MachineBasicBlock.h"
#include "llvm/Target/TargetInstrInfo.h"
#include "Support/Debug.h"
-#include <iostream>
using namespace llvm;
MSchedGraphNode::MSchedGraphNode(const MachineInstr* inst,
diff --git a/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp b/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp
index 58fd089943..62ca490c98 100644
--- a/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp
+++ b/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp
@@ -23,7 +23,6 @@
#include "Support/StringExtras.h"
#include <vector>
#include <utility>
-#include <iostream>
#include <fstream>
#include <sstream>
diff --git a/lib/CodeGen/RegAllocIterativeScan.cpp b/lib/CodeGen/RegAllocIterativeScan.cpp
index 9c946a7703..7f7b2818ff 100644
--- a/lib/CodeGen/RegAllocIterativeScan.cpp
+++ b/lib/CodeGen/RegAllocIterativeScan.cpp
@@ -34,7 +34,6 @@
#include "VirtRegMap.h"
#include <algorithm>
#include <cmath>
-#include <iostream>
#include <set>
using namespace llvm;
diff --git a/lib/CodeGen/RegAllocLinearScan.cpp b/lib/CodeGen/RegAllocLinearScan.cpp
index 4a55df1893..e6e5595720 100644
--- a/lib/CodeGen/RegAllocLinearScan.cpp
+++ b/lib/CodeGen/RegAllocLinearScan.cpp
@@ -28,7 +28,6 @@
#include "VirtRegMap.h"
#include <algorithm>
#include <cmath>
-#include <iostream>
#include <set>
using namespace llvm;
diff --git a/lib/CodeGen/RegAllocLocal.cpp b/lib/CodeGen/RegAllocLocal.cpp
index 4c7ccdf875..bea603ce49 100644
--- a/lib/CodeGen/RegAllocLocal.cpp
+++ b/lib/CodeGen/RegAllocLocal.cpp
@@ -25,7 +25,6 @@
#include "Support/Debug.h"
#include "Support/DenseMap.h"
#include "Support/Statistic.h"
-#include <iostream>
using namespace llvm;
namespace {
diff --git a/lib/CodeGen/RegAllocSimple.cpp b/lib/CodeGen/RegAllocSimple.cpp
index ad46bbfec1..4c1e371c72 100644
--- a/lib/CodeGen/RegAllocSimple.cpp
+++ b/lib/CodeGen/RegAllocSimple.cpp
@@ -25,7 +25,6 @@
#include "Support/Debug.h"
#include "Support/Statistic.h"
#include "Support/STLExtras.h"
-#include <iostream>
using namespace llvm;
namespace {
diff --git a/lib/CodeGen/TwoAddressInstructionPass.cpp b/lib/CodeGen/TwoAddressInstructionPass.cpp
index f2815eecff..0805549d85 100644
--- a/lib/CodeGen/TwoAddressInstructionPass.cpp
+++ b/lib/CodeGen/TwoAddressInstructionPass.cpp
@@ -40,7 +40,6 @@
#include "Support/Debug.h"
#include "Support/Statistic.h"
#include "Support/STLExtras.h"
-#include <iostream>
using namespace llvm;
namespace {
diff --git a/lib/CodeGen/VirtRegMap.cpp b/lib/CodeGen/VirtRegMap.cpp
index 3d543296b4..572bace594 100644
--- a/lib/CodeGen/VirtRegMap.cpp
+++ b/lib/CodeGen/VirtRegMap.cpp
@@ -27,7 +27,6 @@
#include "Support/DenseMap.h"
#include "Support/Statistic.h"
#include "Support/STLExtras.h"
-#include <iostream>
using namespace llvm;
diff --git a/lib/Support/ToolRunner.cpp b/lib/Support/ToolRunner.cpp
index 0e6a0413dd..ad62474eac 100644
--- a/lib/Support/ToolRunner.cpp
+++ b/lib/Support/ToolRunner.cpp
@@ -16,7 +16,6 @@
#include "Config/config.h" // for HAVE_LINK_R
#include "Support/Debug.h"
#include "Support/FileUtilities.h"
-#include <iostream>
#include <fstream>
#include <sstream>
using namespace llvm;
diff --git a/lib/Target/SparcV9/ModuloScheduling/MSSchedule.cpp b/lib/Target/SparcV9/ModuloScheduling/MSSchedule.cpp
index 48ddd386fa..dfee1d15be 100644
--- a/lib/Target/SparcV9/ModuloScheduling/MSSchedule.cpp
+++ b/lib/Target/SparcV9/ModuloScheduling/MSSchedule.cpp
@@ -15,7 +15,6 @@
#include "MSSchedule.h"
#include "Support/Debug.h"
#include "llvm/Target/TargetSchedInfo.h"
-#include <iostream>
using namespace llvm;
diff --git a/lib/Target/SparcV9/ModuloScheduling/MSchedGraph.cpp b/lib/Target/SparcV9/ModuloScheduling/MSchedGraph.cpp
index 4898da8e49..b441bea051 100644
--- a/lib/Target/SparcV9/ModuloScheduling/MSchedGraph.cpp
+++ b/lib/Target/SparcV9/ModuloScheduling/MSchedGraph.cpp
@@ -17,7 +17,6 @@
#include "llvm/CodeGen/MachineBasicBlock.h"
#include "llvm/Target/TargetInstrInfo.h"
#include "Support/Debug.h"
-#include <iostream>
using namespace llvm;
MSchedGraphNode::MSchedGraphNode(const MachineInstr* inst,
diff --git a/lib/Target/SparcV9/ModuloScheduling/ModuloScheduling.cpp b/lib/Target/SparcV9/ModuloScheduling/ModuloScheduling.cpp
index 58fd089943..62ca490c98 100644
--- a/lib/Target/SparcV9/ModuloScheduling/ModuloScheduling.cpp
+++ b/lib/Target/SparcV9/ModuloScheduling/ModuloScheduling.cpp
@@ -23,7 +23,6 @@
#include "Support/StringExtras.h"
#include <vector>
#include <utility>
-#include <iostream>
#include <fstream>
#include <sstream>
diff --git a/lib/Transforms/ExprTypeConvert.cpp b/lib/Transforms/ExprTypeConvert.cpp
index 8e4fe7c4f5..1669f0371e 100644
--- a/lib/Transforms/ExprTypeConvert.cpp
+++ b/lib/Transforms/ExprTypeConvert.cpp
@@ -18,12 +18,10 @@
#include "llvm/iOther.h"
#include "llvm/iPHINode.h"
#include "llvm/iMemory.h"
-
#include "llvm/Analysis/Expressions.h"
#include "Support/STLExtras.h"
#include "Support/Debug.h"
#include <algorithm>
-#include <iostream>
using namespace llvm;
static bool OperandConvertibleToType(User *U, Value *V, const Type *Ty,
diff --git a/lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp b/lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp
index d667e57875..d69c4c3b4c 100644
--- a/lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp
+++ b/lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp
@@ -16,7 +16,6 @@
#include "llvm/iTerminators.h"
#include "Support/Debug.h"
#include <algorithm>
-#include <iostream>
using std::vector;
diff --git a/lib/Transforms/Instrumentation/ProfilePaths/GraphAuxiliary.cpp b/lib/Transforms/Instrumentation/ProfilePaths/GraphAuxiliary.cpp
index f0db940ced..d9dc011cd5 100644
--- a/lib/Transforms/Instrumentation/ProfilePaths/GraphAuxiliary.cpp
+++ b/lib/Transforms/Instrumentation/ProfilePaths/GraphAuxiliary.cpp
@@ -17,7 +17,6 @@
#include "llvm/iTerminators.h"
#include "Support/Debug.h"
#include <algorithm>
-#include <iostream>
#include "Graph.h"
//using std::list;
diff --git a/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp b/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp
index 5821fda8da..5d53d230c9 100644
--- a/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp
+++ b/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp
@@ -24,7 +24,6 @@
#include "llvm/Pass.h"
#include "Support/Debug.h"
#include "../ProfilingUtils.h"
-#include <iostream>
namespace llvm {
diff --git a/lib/Transforms/Instrumentation/TraceBasicBlocks.cpp b/lib/Transforms/Instrumentation/TraceBasicBlocks.cpp
index 3258bf5b21..9403aa26f7 100644
--- a/lib/Transforms/Instrumentation/TraceBasicBlocks.cpp
+++ b/lib/Transforms/Instrumentation/TraceBasicBlocks.cpp
@@ -23,7 +23,6 @@
#include "llvm/iPHINode.h"
#include "ProfilingUtils.h"
#include "Support/Debug.h"
-#include <iostream>
#include <set>
using namespace llvm;
diff --git a/lib/Transforms/Utils/CodeExtractor.cpp b/lib/Transforms/Utils/CodeExtractor.cpp
index 67ec6415cd..dbc358bf61 100644
--- a/lib/Transforms/Utils/CodeExtractor.cpp
+++ b/lib/Transforms/Utils/CodeExtractor.cpp
@@ -28,7 +28,6 @@
#include "Support/Debug.h"
#include "Support/StringExtras.h"
#include <algorithm>
-#include <iostream>
#include <set>
using namespace llvm;
diff --git a/lib/Transforms/Utils/SimplifyCFG.cpp b/lib/Transforms/Utils/SimplifyCFG.cpp
index 2cf4ab9cde..e2a5c8e365 100644
--- a/lib/Transforms/Utils/SimplifyCFG.cpp
+++ b/lib/Transforms/Utils/SimplifyCFG.cpp
@@ -21,7 +21,6 @@
#include <algorithm>
#include <functional>
#include <set>
-#include <iostream>
using namespace llvm;
diff --git a/tools/bugpoint/ExecutionDriver.cpp b/tools/bugpoint/ExecutionDriver.cpp
index c2a4a1cba6..12ca123402 100644
--- a/tools/bugpoint/ExecutionDriver.cpp
+++ b/tools/bugpoint/ExecutionDriver.cpp
@@ -19,7 +19,6 @@
#include "Support/FileUtilities.h"
#include "Support/SystemUtils.h"
#include <fstream>
-#include <iostream>
using namespace llvm;
namespace {
diff --git a/tools/bugpoint/ExtractFunction.cpp b/tools/bugpoint/ExtractFunction.cpp
index 0f3d44e8a4..ecc2652556 100644
--- a/tools/bugpoint/ExtractFunction.cpp
+++ b/tools/bugpoint/ExtractFunction.cpp
@@ -27,7 +27,6 @@
#include "Support/CommandLine.h"
#include "Support/Debug.h"
#include "Support/FileUtilities.h"
-#include <iostream>
#include <set>
using namespace llvm;
diff --git a/tools/bugpoint/ToolRunner.cpp b/tools/bugpoint/ToolRunner.cpp
index 0e6a0413dd..ad62474eac 100644
--- a/tools/bugpoint/ToolRunner.cpp
+++ b/tools/bugpoint/ToolRunner.cpp
@@ -16,7 +16,6 @@
#include "Config/config.h" // for HAVE_LINK_R
#include "Support/Debug.h"
#include "Support/FileUtilities.h"
-#include <iostream>
#include <fstream>
#include <sstream>
using namespace llvm;