diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 10:16:57 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 10:16:57 +0000 |
commit | 605e30e93cea54655f0dfb0a6eb4ff0d48353f4f (patch) | |
tree | 029e11f661b7090305993e33bcc7394759c3f181 /llvm/examples/HowToUseJIT/HowToUseJIT.cpp | |
parent | c5c675d203fa626f77becbd4d42d8b9c91ffc985 (diff) | |
download | bcm5719-llvm-605e30e93cea54655f0dfb0a6eb4ff0d48353f4f.tar.gz bcm5719-llvm-605e30e93cea54655f0dfb0a6eb4ff0d48353f4f.zip |
Sort the #include lines of the examples/... tree.
llvm-svn: 169249
Diffstat (limited to 'llvm/examples/HowToUseJIT/HowToUseJIT.cpp')
-rw-r--r-- | llvm/examples/HowToUseJIT/HowToUseJIT.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/examples/HowToUseJIT/HowToUseJIT.cpp b/llvm/examples/HowToUseJIT/HowToUseJIT.cpp index 5588e923df8..544288abc74 100644 --- a/llvm/examples/HowToUseJIT/HowToUseJIT.cpp +++ b/llvm/examples/HowToUseJIT/HowToUseJIT.cpp @@ -36,15 +36,15 @@ #include "llvm/Constants.h" #include "llvm/DerivedTypes.h" +#include "llvm/ExecutionEngine/GenericValue.h" +#include "llvm/ExecutionEngine/Interpreter.h" +#include "llvm/ExecutionEngine/JIT.h" #include "llvm/IRBuilder.h" #include "llvm/Instructions.h" #include "llvm/LLVMContext.h" #include "llvm/Module.h" -#include "llvm/ExecutionEngine/JIT.h" -#include "llvm/ExecutionEngine/Interpreter.h" -#include "llvm/ExecutionEngine/GenericValue.h" -#include "llvm/Support/TargetSelect.h" #include "llvm/Support/ManagedStatic.h" +#include "llvm/Support/TargetSelect.h" #include "llvm/Support/raw_ostream.h" using namespace llvm; |