diff options
Diffstat (limited to 'projects')
-rw-r--r-- | projects/HowToUseJIT/HowToUseJIT.cpp | 2 | ||||
-rw-r--r-- | projects/SmallExamples/HowToUseJIT/HowToUseJIT.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/projects/HowToUseJIT/HowToUseJIT.cpp b/projects/HowToUseJIT/HowToUseJIT.cpp index e9100cf..889b34a 100644 --- a/projects/HowToUseJIT/HowToUseJIT.cpp +++ b/projects/HowToUseJIT/HowToUseJIT.cpp @@ -94,7 +94,7 @@ int main() { // Now we create the JIT. ExistingModuleProvider* MP = new ExistingModuleProvider(M); - ExecutionEngine* EE = ExecutionEngine::create(MP, true); + ExecutionEngine* EE = ExecutionEngine::create(MP, false); std::cout << "We just constructed this LLVM module:\n\n" << *M; std::cout << "\n\nRunning foo: " << std::flush; diff --git a/projects/SmallExamples/HowToUseJIT/HowToUseJIT.cpp b/projects/SmallExamples/HowToUseJIT/HowToUseJIT.cpp index e9100cf..889b34a 100644 --- a/projects/SmallExamples/HowToUseJIT/HowToUseJIT.cpp +++ b/projects/SmallExamples/HowToUseJIT/HowToUseJIT.cpp @@ -94,7 +94,7 @@ int main() { // Now we create the JIT. ExistingModuleProvider* MP = new ExistingModuleProvider(M); - ExecutionEngine* EE = ExecutionEngine::create(MP, true); + ExecutionEngine* EE = ExecutionEngine::create(MP, false); std::cout << "We just constructed this LLVM module:\n\n" << *M; std::cout << "\n\nRunning foo: " << std::flush; |