aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-03-18 03:15:29 +0000
committerChris Lattner <sabre@nondot.org>2004-03-18 03:15:29 +0000
commit33e197b7778c92acc732c3255dc8fbb99923e8cc (patch)
tree8ea721dea989955b8107bad393adef403fd75cf5
parente454c0d607937d13dbd72e4b28b8fc76cc18c281 (diff)
downloadexternal_llvm-33e197b7778c92acc732c3255dc8fbb99923e8cc.zip
external_llvm-33e197b7778c92acc732c3255dc8fbb99923e8cc.tar.gz
external_llvm-33e197b7778c92acc732c3255dc8fbb99923e8cc.tar.bz2
Prune #includes, moving the module interface to the front. Note that this
exposed the fact that the header was not self-contained. There is a reason we do things :) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12481 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Transforms/Utils/CodeExtractor.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Transforms/Utils/CodeExtractor.cpp b/lib/Transforms/Utils/CodeExtractor.cpp
index bc4c5a7..e008fd7 100644
--- a/lib/Transforms/Utils/CodeExtractor.cpp
+++ b/lib/Transforms/Utils/CodeExtractor.cpp
@@ -13,7 +13,7 @@
//
//===----------------------------------------------------------------------===//
-#include "llvm/BasicBlock.h"
+#include "llvm/Transforms/Utils/FunctionUtils.h"
#include "llvm/Constants.h"
#include "llvm/DerivedTypes.h"
#include "llvm/Instructions.h"
@@ -22,7 +22,6 @@
#include "llvm/Analysis/LoopInfo.h"
#include "llvm/Analysis/Verifier.h"
#include "llvm/Transforms/Utils/BasicBlockUtils.h"
-#include "llvm/Transforms/Utils/FunctionUtils.h"
#include "Support/Debug.h"
#include "Support/StringExtras.h"
#include <algorithm>