summaryrefslogtreecommitdiffstats
path: root/llvm/projects
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/projects')
-rw-r--r--llvm/projects/HowToUseJIT/HowToUseJIT.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/projects/HowToUseJIT/HowToUseJIT.cpp b/llvm/projects/HowToUseJIT/HowToUseJIT.cpp
index e9100cffe6b..889b34aa95c 100644
--- a/llvm/projects/HowToUseJIT/HowToUseJIT.cpp
+++ b/llvm/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;
OpenPOWER on IntegriCloud