diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-07 21:19:30 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-07 21:19:30 +0000 |
commit | 0c2305b1107b60600e08a66bba932396ee752b5b (patch) | |
tree | 9afc3ecb1fa2842e0c57e9d8eb85227ece6846f4 /llvm/tools/bugpoint/ExtractFunction.cpp | |
parent | 83d52f3c367102ce25d47f9b3f8b6631f9afa270 (diff) | |
download | bcm5719-llvm-0c2305b1107b60600e08a66bba932396ee752b5b.tar.gz bcm5719-llvm-0c2305b1107b60600e08a66bba932396ee752b5b.zip |
Re-grouped and alphabetized headers for easier reading and cleaner style.
llvm-svn: 7689
Diffstat (limited to 'llvm/tools/bugpoint/ExtractFunction.cpp')
-rw-r--r-- | llvm/tools/bugpoint/ExtractFunction.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/tools/bugpoint/ExtractFunction.cpp b/llvm/tools/bugpoint/ExtractFunction.cpp index 9cb922a55d4..214833894b1 100644 --- a/llvm/tools/bugpoint/ExtractFunction.cpp +++ b/llvm/tools/bugpoint/ExtractFunction.cpp @@ -6,14 +6,14 @@ //===----------------------------------------------------------------------===// #include "BugDriver.h" +#include "llvm/Constant.h" #include "llvm/Module.h" #include "llvm/PassManager.h" +#include "llvm/Type.h" +#include "llvm/Analysis/Verifier.h" #include "llvm/Transforms/IPO.h" #include "llvm/Transforms/Scalar.h" #include "llvm/Transforms/Utils/Cloning.h" -#include "llvm/Analysis/Verifier.h" -#include "llvm/Type.h" -#include "llvm/Constant.h" #include "Support/CommandLine.h" bool DisableSimplifyCFG = false; |