Prune #includes, moving the module interface to the front. Note that this
authorChris Lattner <sabre@nondot.org>
Thu, 18 Mar 2004 03:15:29 +0000 (03:15 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 18 Mar 2004 03:15:29 +0000 (03:15 +0000)
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

lib/Transforms/Utils/CodeExtractor.cpp

index bc4c5a72383c17daeb687bac58eb2da56eb7540a..e008fd763231951112602da593d56f25446360ff 100644 (file)
@@ -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>