summaryrefslogtreecommitdiff
path: root/examples/ParallelJIT
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-01-19 22:45:50 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-01-19 22:45:50 +0000
commit56427031f60a34f8388a0facf14bea0558b8320e (patch)
treeb5931b6dfb889d49a1b1a04ea3531dd818f538ff /examples/ParallelJIT
parentbc0895a59628c8ae7fea56572e19ddc081d219ac (diff)
downloadllvm-56427031f60a34f8388a0facf14bea0558b8320e.tar.gz
llvm-56427031f60a34f8388a0facf14bea0558b8320e.tar.bz2
llvm-56427031f60a34f8388a0facf14bea0558b8320e.tar.xz
Fix a #include to resolve IntegerType class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33385 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples/ParallelJIT')
-rw-r--r--examples/ParallelJIT/ParallelJIT.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/ParallelJIT/ParallelJIT.cpp b/examples/ParallelJIT/ParallelJIT.cpp
index 47f990cc22..f92055830d 100644
--- a/examples/ParallelJIT/ParallelJIT.cpp
+++ b/examples/ParallelJIT/ParallelJIT.cpp
@@ -20,7 +20,7 @@
#include <pthread.h>
#include "llvm/Module.h"
#include "llvm/Constants.h"
-#include "llvm/Type.h"
+#include "llvm/DerivedTypes.h"
#include "llvm/Instructions.h"
#include "llvm/ModuleProvider.h"
#include "llvm/ExecutionEngine/JIT.h"