diff options
| author | Jeff Cohen <jeffc@jolt-lang.org> | 2006-03-24 03:11:31 +0000 |
|---|---|---|
| committer | Jeff Cohen <jeffc@jolt-lang.org> | 2006-03-24 03:11:31 +0000 |
| commit | e46cbe7a551f7d37b2f05fa965816ad6d9ad0f02 (patch) | |
| tree | 4e3aef7334e756a2528ce8e12f18d2e5f2aa17eb /llvm/examples | |
| parent | d1370b53d90e81715ab6e5aa3018ac4d826cf4a7 (diff) | |
| download | bcm5719-llvm-e46cbe7a551f7d37b2f05fa965816ad6d9ad0f02.tar.gz bcm5719-llvm-e46cbe7a551f7d37b2f05fa965816ad6d9ad0f02.zip | |
Minor corrections.
llvm-svn: 27042
Diffstat (limited to 'llvm/examples')
| -rw-r--r-- | llvm/examples/Fibonacci/fibonacci.cpp | 3 | ||||
| -rw-r--r-- | llvm/examples/HowToUseJIT/HowToUseJIT.cpp | 3 | ||||
| -rw-r--r-- | llvm/examples/ParallelJIT/ParallelJIT.cpp | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/llvm/examples/Fibonacci/fibonacci.cpp b/llvm/examples/Fibonacci/fibonacci.cpp index e9d0136f4f4..cdc84ca2122 100644 --- a/llvm/examples/Fibonacci/fibonacci.cpp +++ b/llvm/examples/Fibonacci/fibonacci.cpp @@ -29,7 +29,8 @@ #include "llvm/Instructions.h" #include "llvm/ModuleProvider.h" #include "llvm/Analysis/Verifier.h" -#include "llvm/ExecutionEngine/ExecutionEngine.h" +#include "llvm/ExecutionEngine/JIT.h" +#include "llvm/ExecutionEngine/Interpreter.h" #include "llvm/ExecutionEngine/GenericValue.h" #include <iostream> using namespace llvm; diff --git a/llvm/examples/HowToUseJIT/HowToUseJIT.cpp b/llvm/examples/HowToUseJIT/HowToUseJIT.cpp index 5ba8a7f1a82..8fb9e5659de 100644 --- a/llvm/examples/HowToUseJIT/HowToUseJIT.cpp +++ b/llvm/examples/HowToUseJIT/HowToUseJIT.cpp @@ -39,7 +39,8 @@ #include "llvm/Type.h" #include "llvm/Instructions.h" #include "llvm/ModuleProvider.h" -#include "llvm/ExecutionEngine/ExecutionEngine.h" +#include "llvm/ExecutionEngine/JIT.h" +#include "llvm/ExecutionEngine/Interpreter.h" #include "llvm/ExecutionEngine/GenericValue.h" #include <iostream> using namespace llvm; diff --git a/llvm/examples/ParallelJIT/ParallelJIT.cpp b/llvm/examples/ParallelJIT/ParallelJIT.cpp index 56ace0322e9..b70f3db5bb0 100644 --- a/llvm/examples/ParallelJIT/ParallelJIT.cpp +++ b/llvm/examples/ParallelJIT/ParallelJIT.cpp @@ -23,7 +23,8 @@ #include "llvm/Type.h" #include "llvm/Instructions.h" #include "llvm/ModuleProvider.h" -#include "llvm/ExecutionEngine/ExecutionEngine.h" +#include "llvm/ExecutionEngine/JIT.h" +#include "llvm/ExecutionEngine/Interpreter.h" #include "llvm/ExecutionEngine/GenericValue.h" #include <iostream> using namespace llvm; |

