diff options
author | Chris Lattner <sabre@nondot.org> | 2006-01-22 23:41:00 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-01-22 23:41:00 +0000 |
commit | de02d7727f50dd210bad66ff62cda3bcc10432e6 (patch) | |
tree | a075ce04f4a038c32eb95996d027ef2a262fe96d /llvm/lib/CodeGen | |
parent | c597b8a55e64b3a732f8e60187affd7ed3723f94 (diff) | |
download | bcm5719-llvm-de02d7727f50dd210bad66ff62cda3bcc10432e6.tar.gz bcm5719-llvm-de02d7727f50dd210bad66ff62cda3bcc10432e6.zip |
Add explicit #includes of <iostream>
llvm-svn: 25515
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/LiveIntervalAnalysis.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/CodeGen/RegAllocLinearScan.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/CodeGen/RegAllocLocal.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/CodeGen/RegAllocSimple.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/CodeGen/TwoAddressInstructionPass.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/CodeGen/VirtRegMap.cpp | 1 |
7 files changed, 7 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp index d5160cdb2af..125a18dd24e 100644 --- a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/llvm/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/llvm/lib/CodeGen/RegAllocLinearScan.cpp b/llvm/lib/CodeGen/RegAllocLinearScan.cpp index fbf669285c3..f5b081ab596 100644 --- a/llvm/lib/CodeGen/RegAllocLinearScan.cpp +++ b/llvm/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/llvm/lib/CodeGen/RegAllocLocal.cpp b/llvm/lib/CodeGen/RegAllocLocal.cpp index 800f305ad94..f84f7e82ef0 100644 --- a/llvm/lib/CodeGen/RegAllocLocal.cpp +++ b/llvm/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/llvm/lib/CodeGen/RegAllocSimple.cpp b/llvm/lib/CodeGen/RegAllocSimple.cpp index 57f3f5d7723..f6a9a112df6 100644 --- a/llvm/lib/CodeGen/RegAllocSimple.cpp +++ b/llvm/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/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 08d0b061372..99c272e0013 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/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/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp b/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp index 3aa2cc7c9b8..48581eebc18 100644 --- a/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp +++ b/llvm/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/llvm/lib/CodeGen/VirtRegMap.cpp b/llvm/lib/CodeGen/VirtRegMap.cpp index f27ae2a8212..8a4574460c9 100644 --- a/llvm/lib/CodeGen/VirtRegMap.cpp +++ b/llvm/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 { |