aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-08-14 18:17:32 +0000
committerChris Lattner <sabre@nondot.org>2002-08-14 18:17:32 +0000
commit48a4531ee4ed02f9a9cd937593ae4b188e60531f (patch)
treefc315cabff0e3541888a6f0b2b2d797575023cee /lib/Transforms
parentf4e3c006acae5ccdad021c93046f049cb3543368 (diff)
Remove extra #includes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3322 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/Scalar/SCCP.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Transforms/Scalar/SCCP.cpp b/lib/Transforms/Scalar/SCCP.cpp
index c284b0d042..61f41e140b 100644
--- a/lib/Transforms/Scalar/SCCP.cpp
+++ b/lib/Transforms/Scalar/SCCP.cpp
@@ -18,7 +18,6 @@
#include "llvm/Transforms/Scalar.h"
#include "llvm/ConstantHandling.h"
#include "llvm/Function.h"
-#include "llvm/BasicBlock.h"
#include "llvm/iPHINode.h"
#include "llvm/iMemory.h"
#include "llvm/iTerminators.h"
@@ -29,7 +28,6 @@
#include "Support/StatisticReporter.h"
#include <algorithm>
#include <set>
-#include <iostream>
using std::cerr;
static Statistic<> NumInstRemoved("sccp\t\t- Number of instructions removed");