summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-01-19 22:45:05 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-01-19 22:45:05 +0000
commitbc0895a59628c8ae7fea56572e19ddc081d219ac (patch)
tree010bca98d02076ea066a202bd406df3c94e160b5 /examples
parent4be24ed9ce7c54528fa133cc218b47737556667a (diff)
downloadllvm-bc0895a59628c8ae7fea56572e19ddc081d219ac.tar.gz
llvm-bc0895a59628c8ae7fea56572e19ddc081d219ac.tar.bz2
llvm-bc0895a59628c8ae7fea56572e19ddc081d219ac.tar.xz
Add a #include to resolve IntegerType class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33384 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r--examples/HowToUseJIT/HowToUseJIT.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/HowToUseJIT/HowToUseJIT.cpp b/examples/HowToUseJIT/HowToUseJIT.cpp
index abcd117b51..4709562935 100644
--- a/examples/HowToUseJIT/HowToUseJIT.cpp
+++ b/examples/HowToUseJIT/HowToUseJIT.cpp
@@ -36,7 +36,7 @@
#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"