diff options
author | Chris Lattner <sabre@nondot.org> | 2004-03-18 03:15:29 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-03-18 03:15:29 +0000 |
commit | cee3404d0aefbe0b4837ec7b2904cb460943f86f (patch) | |
tree | c8888872b15af66d002740832d9b1c24cd4690b7 /llvm/lib/Transforms | |
parent | 5b460d2ad79289500ff9260dbabda61851e4af9b (diff) | |
download | bcm5719-llvm-cee3404d0aefbe0b4837ec7b2904cb460943f86f.tar.gz bcm5719-llvm-cee3404d0aefbe0b4837ec7b2904cb460943f86f.zip |
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 :)
llvm-svn: 12481
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/Utils/CodeExtractor.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Utils/CodeExtractor.cpp b/llvm/lib/Transforms/Utils/CodeExtractor.cpp index bc4c5a72383..e008fd76323 100644 --- a/llvm/lib/Transforms/Utils/CodeExtractor.cpp +++ b/llvm/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> |