diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 09:37:22 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 09:37:22 +0000 |
commit | 8675b4af7736b2c7e41bda9f3ea450757c2b56c7 (patch) | |
tree | 320060f357e21d3e994a9f6ee7f889a18ed4cbee /clang/examples/clang-interpreter/main.cpp | |
parent | cc0694c8a4b8c4c4d28302b473d4af4d9224f6a2 (diff) | |
download | bcm5719-llvm-8675b4af7736b2c7e41bda9f3ea450757c2b56c7.tar.gz bcm5719-llvm-8675b4af7736b2c7e41bda9f3ea450757c2b56c7.zip |
Sort the #include lines for examples/...
llvm-svn: 169241
Diffstat (limited to 'clang/examples/clang-interpreter/main.cpp')
-rw-r--r-- | clang/examples/clang-interpreter/main.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/clang/examples/clang-interpreter/main.cpp b/clang/examples/clang-interpreter/main.cpp index 8ea1506e798..99250d2b8b7 100644 --- a/clang/examples/clang-interpreter/main.cpp +++ b/clang/examples/clang-interpreter/main.cpp @@ -8,25 +8,24 @@ //===----------------------------------------------------------------------===// #include "clang/CodeGen/CodeGenAction.h" +#include "clang/Basic/DiagnosticOptions.h" #include "clang/Driver/Compilation.h" #include "clang/Driver/Driver.h" #include "clang/Driver/Tool.h" -#include "clang/Frontend/CompilerInvocation.h" #include "clang/Frontend/CompilerInstance.h" +#include "clang/Frontend/CompilerInvocation.h" #include "clang/Frontend/FrontendDiagnostic.h" #include "clang/Frontend/TextDiagnosticPrinter.h" -#include "clang/Basic/DiagnosticOptions.h" - -#include "llvm/Module.h" #include "llvm/ADT/OwningPtr.h" #include "llvm/ADT/SmallString.h" -#include "llvm/ExecutionEngine/JIT.h" #include "llvm/ExecutionEngine/ExecutionEngine.h" -#include "llvm/Support/ManagedStatic.h" -#include "llvm/Support/raw_ostream.h" +#include "llvm/ExecutionEngine/JIT.h" +#include "llvm/Module.h" #include "llvm/Support/Host.h" +#include "llvm/Support/ManagedStatic.h" #include "llvm/Support/Path.h" #include "llvm/Support/TargetSelect.h" +#include "llvm/Support/raw_ostream.h" using namespace clang; using namespace clang::driver; |