diff options
author | Dan Gohman <gohman@apple.com> | 2009-06-05 16:32:58 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-06-05 16:32:58 +0000 |
commit | d9ef48a73e69459f77c88ca2a14d5367354ca645 (patch) | |
tree | 6b6af6d5c540e9f06e8a7bc39836ad7c80461b2d /llvm/lib/Analysis | |
parent | fa934809374fd7b8cfa70c3f5bfd864d7f2175ba (diff) | |
download | bcm5719-llvm-d9ef48a73e69459f77c88ca2a14d5367354ca645.tar.gz bcm5719-llvm-d9ef48a73e69459f77c88ca2a14d5367354ca645.zip |
Remove some unnecessary #includes.
llvm-svn: 72948
Diffstat (limited to 'llvm/lib/Analysis')
-rw-r--r-- | llvm/lib/Analysis/InstCount.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/Analysis/LoopInfo.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/Analysis/ScalarEvolution.cpp | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/Analysis/InstCount.cpp b/llvm/lib/Analysis/InstCount.cpp index 2dea7b3ef68..2b34ad3b070 100644 --- a/llvm/lib/Analysis/InstCount.cpp +++ b/llvm/lib/Analysis/InstCount.cpp @@ -19,7 +19,6 @@ #include "llvm/Support/InstVisitor.h" #include "llvm/Support/Streams.h" #include "llvm/ADT/Statistic.h" -#include <ostream> using namespace llvm; STATISTIC(TotalInsts , "Number of instructions (of all types)"); diff --git a/llvm/lib/Analysis/LoopInfo.cpp b/llvm/lib/Analysis/LoopInfo.cpp index de6480a66d5..a0d3974189a 100644 --- a/llvm/lib/Analysis/LoopInfo.cpp +++ b/llvm/lib/Analysis/LoopInfo.cpp @@ -24,7 +24,6 @@ #include "llvm/ADT/DepthFirstIterator.h" #include "llvm/ADT/SmallPtrSet.h" #include <algorithm> -#include <ostream> using namespace llvm; char LoopInfo::ID = 0; diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp index f7f1849b6da..4b1cda08c8d 100644 --- a/llvm/lib/Analysis/ScalarEvolution.cpp +++ b/llvm/lib/Analysis/ScalarEvolution.cpp @@ -80,7 +80,6 @@ #include "llvm/Support/raw_ostream.h" #include "llvm/ADT/Statistic.h" #include "llvm/ADT/STLExtras.h" -#include <ostream> #include <algorithm> using namespace llvm; |