summaryrefslogtreecommitdiff
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-01-22 23:41:00 +0000
committerChris Lattner <sabre@nondot.org>2006-01-22 23:41:00 +0000
commit2c2c6c61f100bc7c3df873b11203fcea1b5e18fe (patch)
treeb83c17a7e75dcd287e174a98e5ec54d3ceb73ff5 /lib/CodeGen
parentdac58ad983c62b49629e1f2969f4e0a621167d63 (diff)
downloadllvm-2c2c6c61f100bc7c3df873b11203fcea1b5e18fe.tar.gz
llvm-2c2c6c61f100bc7c3df873b11203fcea1b5e18fe.tar.bz2
llvm-2c2c6c61f100bc7c3df873b11203fcea1b5e18fe.tar.xz
Add explicit #includes of <iostream>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25515 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/LiveIntervalAnalysis.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/SelectionDAG/DAGCombiner.cpp1
-rw-r--r--lib/CodeGen/TwoAddressInstructionPass.cpp1
-rw-r--r--lib/CodeGen/VirtRegMap.cpp1
7 files changed, 7 insertions, 0 deletions
diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp
index d5160cdb2a..125a18dd24 100644
--- a/lib/CodeGen/LiveIntervalAnalysis.cpp
+++ b/lib/CodeGen/LiveIntervalAnalysis.cpp
@@ -34,6 +34,7 @@
#include "llvm/ADT/STLExtras.h"
#include <algorithm>
#include <cmath>
+#include <iostream>
using namespace llvm;
namespace {
diff --git a/lib/CodeGen/RegAllocLinearScan.cpp b/lib/CodeGen/RegAllocLinearScan.cpp
index fbf669285c..f5b081ab59 100644
--- a/lib/CodeGen/RegAllocLinearScan.cpp
+++ b/lib/CodeGen/RegAllocLinearScan.cpp
@@ -28,6 +28,7 @@
#include "llvm/Support/Debug.h"
#include <algorithm>
#include <cmath>
+#include <iostream>
#include <set>
#include <queue>
#include <memory>
diff --git a/lib/CodeGen/RegAllocLocal.cpp b/lib/CodeGen/RegAllocLocal.cpp
index 800f305ad9..f84f7e82ef 100644
--- a/lib/CodeGen/RegAllocLocal.cpp
+++ b/lib/CodeGen/RegAllocLocal.cpp
@@ -26,6 +26,7 @@
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/Statistic.h"
#include <algorithm>
+#include <iostream>
using namespace llvm;
namespace {
diff --git a/lib/CodeGen/RegAllocSimple.cpp b/lib/CodeGen/RegAllocSimple.cpp
index 57f3f5d772..f6a9a112df 100644
--- a/lib/CodeGen/RegAllocSimple.cpp
+++ b/lib/CodeGen/RegAllocSimple.cpp
@@ -25,6 +25,7 @@
#include "llvm/Support/Debug.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/ADT/STLExtras.h"
+#include <iostream>
using namespace llvm;
namespace {
diff --git a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
index 08d0b06137..99c272e001 100644
--- a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+++ b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
@@ -45,6 +45,7 @@
#include "llvm/Target/TargetLowering.h"
#include <algorithm>
#include <cmath>
+#include <iostream>
using namespace llvm;
namespace {
diff --git a/lib/CodeGen/TwoAddressInstructionPass.cpp b/lib/CodeGen/TwoAddressInstructionPass.cpp
index 3aa2cc7c9b..48581eebc1 100644
--- a/lib/CodeGen/TwoAddressInstructionPass.cpp
+++ b/lib/CodeGen/TwoAddressInstructionPass.cpp
@@ -40,6 +40,7 @@
#include "llvm/Support/Debug.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/ADT/STLExtras.h"
+#include <iostream>
using namespace llvm;
namespace {
diff --git a/lib/CodeGen/VirtRegMap.cpp b/lib/CodeGen/VirtRegMap.cpp
index f27ae2a821..8a4574460c 100644
--- a/lib/CodeGen/VirtRegMap.cpp
+++ b/lib/CodeGen/VirtRegMap.cpp
@@ -29,6 +29,7 @@
#include "llvm/ADT/Statistic.h"
#include "llvm/ADT/STLExtras.h"
#include <algorithm>
+#include <iostream>
using namespace llvm;
namespace {