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/ParallelJIT/ParallelJIT.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/ParallelJIT/ParallelJIT.cpp')
| -rw-r--r-- | llvm/examples/ParallelJIT/ParallelJIT.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/examples/ParallelJIT/ParallelJIT.cpp b/llvm/examples/ParallelJIT/ParallelJIT.cpp index 305cf1dde06..4c1eb49e16b 100644 --- a/llvm/examples/ParallelJIT/ParallelJIT.cpp +++ b/llvm/examples/ParallelJIT/ParallelJIT.cpp @@ -17,17 +17,17 @@ // call into the JIT at the same time (or the best possible approximation of the // same time). This test had assertion errors until I got the locking right. -#include <pthread.h> -#include "llvm/LLVMContext.h" -#include "llvm/Module.h" #include "llvm/Constants.h" #include "llvm/DerivedTypes.h" -#include "llvm/Instructions.h" -#include "llvm/ExecutionEngine/JIT.h" -#include "llvm/ExecutionEngine/Interpreter.h" #include "llvm/ExecutionEngine/GenericValue.h" +#include "llvm/ExecutionEngine/Interpreter.h" +#include "llvm/ExecutionEngine/JIT.h" +#include "llvm/Instructions.h" +#include "llvm/LLVMContext.h" +#include "llvm/Module.h" #include "llvm/Support/TargetSelect.h" #include <iostream> +#include <pthread.h> using namespace llvm; static Function* createAdd1(Module *M) { |

