diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-07-21 20:50:33 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-07-21 20:50:33 +0000 |
commit | 902dcf07290919f960b06695c16d8c72c521c01a (patch) | |
tree | 3fc788c22e4b21b1ec92e501b6b4c45a96c0a366 /llvm/lib/Transforms | |
parent | 025daeeee67a0a778bc5fd2f23e7e3a07a98a5bc (diff) | |
download | bcm5719-llvm-902dcf07290919f960b06695c16d8c72c521c01a.tar.gz bcm5719-llvm-902dcf07290919f960b06695c16d8c72c521c01a.zip |
These files don't need to include <iostream> since they include "Support/Debug.h".
llvm-svn: 15089
Diffstat (limited to 'llvm/lib/Transforms')
7 files changed, 0 insertions, 8 deletions
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; |