diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-01-22 23:32:06 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-01-22 23:32:06 +0000 |
| commit | c597b8a55e64b3a732f8e60187affd7ed3723f94 (patch) | |
| tree | a799d5e360ed90e50b9c472bd4e95e4603778c61 /llvm/lib/Transforms/IPO | |
| parent | 6806c02380d1c6fb38dfa9f6897491d41573e541 (diff) | |
| download | bcm5719-llvm-c597b8a55e64b3a732f8e60187affd7ed3723f94.tar.gz bcm5719-llvm-c597b8a55e64b3a732f8e60187affd7ed3723f94.zip | |
Make iostream #inclusion explicit
llvm-svn: 25514
Diffstat (limited to 'llvm/lib/Transforms/IPO')
| -rw-r--r-- | llvm/lib/Transforms/IPO/ArgumentPromotion.cpp | 1 | ||||
| -rw-r--r-- | llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp | 1 | ||||
| -rw-r--r-- | llvm/lib/Transforms/IPO/FunctionResolution.cpp | 1 | ||||
| -rw-r--r-- | llvm/lib/Transforms/IPO/GlobalOpt.cpp | 3 | ||||
| -rw-r--r-- | llvm/lib/Transforms/IPO/Inliner.cpp | 1 | ||||
| -rw-r--r-- | llvm/lib/Transforms/IPO/Internalize.cpp | 1 |
6 files changed, 7 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp b/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp index 59232ed2bce..960e36ba54c 100644 --- a/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp +++ b/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp @@ -44,6 +44,7 @@ #include "llvm/ADT/DepthFirstIterator.h" #include "llvm/ADT/Statistic.h" #include "llvm/ADT/StringExtras.h" +#include <iostream> #include <set> using namespace llvm; diff --git a/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp b/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp index 10f2a374294..37fb46d8ab3 100644 --- a/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp +++ b/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp @@ -28,6 +28,7 @@ #include "llvm/Support/Debug.h" #include "llvm/ADT/Statistic.h" #include "llvm/ADT/iterator" +#include <iostream> #include <set> using namespace llvm; diff --git a/llvm/lib/Transforms/IPO/FunctionResolution.cpp b/llvm/lib/Transforms/IPO/FunctionResolution.cpp index ff1a3027120..d8b1a862eab 100644 --- a/llvm/lib/Transforms/IPO/FunctionResolution.cpp +++ b/llvm/lib/Transforms/IPO/FunctionResolution.cpp @@ -29,6 +29,7 @@ #include "llvm/Assembly/Writer.h" #include "llvm/ADT/Statistic.h" #include <algorithm> +#include <iostream> using namespace llvm; namespace { diff --git a/llvm/lib/Transforms/IPO/GlobalOpt.cpp b/llvm/lib/Transforms/IPO/GlobalOpt.cpp index c9c8835e190..7c212e7b7a3 100644 --- a/llvm/lib/Transforms/IPO/GlobalOpt.cpp +++ b/llvm/lib/Transforms/IPO/GlobalOpt.cpp @@ -27,8 +27,9 @@ #include "llvm/Transforms/Utils/Local.h" #include "llvm/ADT/Statistic.h" #include "llvm/ADT/StringExtras.h" -#include <set> #include <algorithm> +#include <iostream> +#include <set> using namespace llvm; namespace { diff --git a/llvm/lib/Transforms/IPO/Inliner.cpp b/llvm/lib/Transforms/IPO/Inliner.cpp index 2ee84276e76..65cc47db403 100644 --- a/llvm/lib/Transforms/IPO/Inliner.cpp +++ b/llvm/lib/Transforms/IPO/Inliner.cpp @@ -22,6 +22,7 @@ #include "llvm/Support/CommandLine.h" #include "llvm/Support/Debug.h" #include "llvm/ADT/Statistic.h" +#include <iostream> #include <set> using namespace llvm; diff --git a/llvm/lib/Transforms/IPO/Internalize.cpp b/llvm/lib/Transforms/IPO/Internalize.cpp index 861b79a4e0f..2f2f06b43b5 100644 --- a/llvm/lib/Transforms/IPO/Internalize.cpp +++ b/llvm/lib/Transforms/IPO/Internalize.cpp @@ -20,6 +20,7 @@ #include "llvm/Support/Debug.h" #include "llvm/ADT/Statistic.h" #include <fstream> +#include <iostream> #include <set> using namespace llvm; |

