aboutsummaryrefslogtreecommitdiff
path: root/llvm/examples/ParallelJIT/ParallelJIT.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2013-01-02 11:56:33 +0000
committerChandler Carruth <chandlerc@gmail.com>2013-01-02 11:56:33 +0000
commit005f27a0d39047acb7085e19a7b3d57c3be6ed41 (patch)
tree4349a7f1ffcdd3a3c4a7e3d742bb4131c5eac722 /llvm/examples/ParallelJIT/ParallelJIT.cpp
parent535d52c7ca390bdeab1b4f261942197d2b65ad93 (diff)
downloadllvm-005f27a0d39047acb7085e19a7b3d57c3be6ed41.zip
llvm-005f27a0d39047acb7085e19a7b3d57c3be6ed41.tar.gz
llvm-005f27a0d39047acb7085e19a7b3d57c3be6ed41.tar.bz2
Update the examples for the new header file locations.
Sorry for the fallout here, I forgot the examples aren't built by default any more. llvm-svn: 171371
Diffstat (limited to 'llvm/examples/ParallelJIT/ParallelJIT.cpp')
-rw-r--r--llvm/examples/ParallelJIT/ParallelJIT.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/examples/ParallelJIT/ParallelJIT.cpp b/llvm/examples/ParallelJIT/ParallelJIT.cpp
index 4c1eb49..64a3886 100644
--- a/llvm/examples/ParallelJIT/ParallelJIT.cpp
+++ b/llvm/examples/ParallelJIT/ParallelJIT.cpp
@@ -17,14 +17,14 @@
// 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 "llvm/Constants.h"
-#include "llvm/DerivedTypes.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/IR/Constants.h"
+#include "llvm/IR/DerivedTypes.h"
+#include "llvm/IR/Instructions.h"
+#include "llvm/IR/LLVMContext.h"
+#include "llvm/IR/Module.h"
#include "llvm/Support/TargetSelect.h"
#include <iostream>
#include <pthread.h>