summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Analysis/DataStructure/Local.cpp1
-rw-r--r--llvm/lib/Analysis/DataStructure/Steensgaard.cpp1
-rw-r--r--llvm/lib/CodeGen/LiveIntervals.cpp1
-rw-r--r--llvm/lib/CodeGen/ModuloScheduling/MSSchedule.cpp1
-rw-r--r--llvm/lib/CodeGen/ModuloScheduling/MSchedGraph.cpp1
-rw-r--r--llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp1
-rw-r--r--llvm/lib/CodeGen/RegAllocIterativeScan.cpp1
-rw-r--r--llvm/lib/CodeGen/RegAllocLinearScan.cpp1
-rw-r--r--llvm/lib/CodeGen/RegAllocLocal.cpp1
-rw-r--r--llvm/lib/CodeGen/RegAllocSimple.cpp1
-rw-r--r--llvm/lib/CodeGen/TwoAddressInstructionPass.cpp1
-rw-r--r--llvm/lib/CodeGen/VirtRegMap.cpp1
-rw-r--r--llvm/lib/Support/ToolRunner.cpp1
-rw-r--r--llvm/lib/Transforms/ExprTypeConvert.cpp2
-rw-r--r--llvm/lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp1
-rw-r--r--llvm/lib/Transforms/Instrumentation/ProfilePaths/GraphAuxiliary.cpp1
-rw-r--r--llvm/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp1
-rw-r--r--llvm/lib/Transforms/Instrumentation/TraceBasicBlocks.cpp1
-rw-r--r--llvm/lib/Transforms/Utils/CodeExtractor.cpp1
-rw-r--r--llvm/lib/Transforms/Utils/SimplifyCFG.cpp1
20 files changed, 0 insertions, 21 deletions
diff --git a/llvm/lib/Analysis/DataStructure/Local.cpp b/llvm/lib/Analysis/DataStructure/Local.cpp
index 7836555c293..34095a2015a 100644
--- a/llvm/lib/Analysis/DataStructure/Local.cpp
+++ b/llvm/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/llvm/lib/Analysis/DataStructure/Steensgaard.cpp b/llvm/lib/Analysis/DataStructure/Steensgaard.cpp
index 5b055dc345a..55a6deb048f 100644
--- a/llvm/lib/Analysis/DataStructure/Steensgaard.cpp
+++ b/llvm/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/llvm/lib/CodeGen/LiveIntervals.cpp b/llvm/lib/CodeGen/LiveIntervals.cpp
index 4479ea76e3d..dc9aab5cd37 100644
--- a/llvm/lib/CodeGen/LiveIntervals.cpp
+++ b/llvm/lib/CodeGen/LiveIntervals.cpp
@@ -33,7 +33,6 @@
#include "Support/STLExtras.h"
#include "VirtRegMap.h"
#include <cmath>
-#include <iostream>
using namespace llvm;
diff --git a/llvm/lib/CodeGen/ModuloScheduling/MSSchedule.cpp b/llvm/lib/CodeGen/ModuloScheduling/MSSchedule.cpp
index 48ddd386fa8..dfee1d15bee 100644
--- a/llvm/lib/CodeGen/ModuloScheduling/MSSchedule.cpp
+++ b/llvm/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/llvm/lib/CodeGen/ModuloScheduling/MSchedGraph.cpp b/llvm/lib/CodeGen/ModuloScheduling/MSchedGraph.cpp
index 4898da8e495..b441bea0512 100644
--- a/llvm/lib/CodeGen/ModuloScheduling/MSchedGraph.cpp
+++ b/llvm/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/llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp b/llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp
index 58fd089943e..62ca490c983 100644
--- a/llvm/lib/CodeGen/ModuloScheduling/ModuloScheduling.cpp
+++ b/llvm/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/llvm/lib/CodeGen/RegAllocIterativeScan.cpp b/llvm/lib/CodeGen/RegAllocIterativeScan.cpp
index 9c946a7703f..7f7b2818ffd 100644
--- a/llvm/lib/CodeGen/RegAllocIterativeScan.cpp
+++ b/llvm/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/llvm/lib/CodeGen/RegAllocLinearScan.cpp b/llvm/lib/CodeGen/RegAllocLinearScan.cpp
index 4a55df18936..e6e5595720f 100644
--- a/llvm/lib/CodeGen/RegAllocLinearScan.cpp
+++ b/llvm/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/llvm/lib/CodeGen/RegAllocLocal.cpp b/llvm/lib/CodeGen/RegAllocLocal.cpp
index 4c7ccdf8758..bea603ce496 100644
--- a/llvm/lib/CodeGen/RegAllocLocal.cpp
+++ b/llvm/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/llvm/lib/CodeGen/RegAllocSimple.cpp b/llvm/lib/CodeGen/RegAllocSimple.cpp
index ad46bbfec1d..4c1e371c723 100644
--- a/llvm/lib/CodeGen/RegAllocSimple.cpp
+++ b/llvm/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/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp b/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
index f2815eecffb..0805549d85c 100644
--- a/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
+++ b/llvm/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/llvm/lib/CodeGen/VirtRegMap.cpp b/llvm/lib/CodeGen/VirtRegMap.cpp
index 3d543296b40..572bace5944 100644
--- a/llvm/lib/CodeGen/VirtRegMap.cpp
+++ b/llvm/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/llvm/lib/Support/ToolRunner.cpp b/llvm/lib/Support/ToolRunner.cpp
index 0e6a0413dd6..ad62474eac9 100644
--- a/llvm/lib/Support/ToolRunner.cpp
+++ b/llvm/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/llvm/lib/Transforms/ExprTypeConvert.cpp b/llvm/lib/Transforms/ExprTypeConvert.cpp
index 8e4fe7c4f55..1669f0371e1 100644
--- a/llvm/lib/Transforms/ExprTypeConvert.cpp
+++ b/llvm/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/llvm/lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp b/llvm/lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp
index d667e57875b..d69c4c3b4ce 100644
--- a/llvm/lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp
+++ b/llvm/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/llvm/lib/Transforms/Instrumentation/ProfilePaths/GraphAuxiliary.cpp b/llvm/lib/Transforms/Instrumentation/ProfilePaths/GraphAuxiliary.cpp
index f0db940ced1..d9dc011cd5e 100644
--- a/llvm/lib/Transforms/Instrumentation/ProfilePaths/GraphAuxiliary.cpp
+++ b/llvm/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/llvm/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp b/llvm/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp
index 5821fda8da1..5d53d230c94 100644
--- a/llvm/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp
+++ b/llvm/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/llvm/lib/Transforms/Instrumentation/TraceBasicBlocks.cpp b/llvm/lib/Transforms/Instrumentation/TraceBasicBlocks.cpp
index 3258bf5b21b..9403aa26f75 100644
--- a/llvm/lib/Transforms/Instrumentation/TraceBasicBlocks.cpp
+++ b/llvm/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/llvm/lib/Transforms/Utils/CodeExtractor.cpp b/llvm/lib/Transforms/Utils/CodeExtractor.cpp
index 67ec6415cd8..dbc358bf61d 100644
--- a/llvm/lib/Transforms/Utils/CodeExtractor.cpp
+++ b/llvm/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/llvm/lib/Transforms/Utils/SimplifyCFG.cpp b/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
index 2cf4ab9cded..e2a5c8e3657 100644
--- a/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
+++ b/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
@@ -21,7 +21,6 @@
#include <algorithm>
#include <functional>
#include <set>
-#include <iostream>
using namespace llvm;
OpenPOWER on IntegriCloud