Switch to using the JIT now that it can directly call zeroarg functions


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15795 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/examples/HowToUseJIT/HowToUseJIT.cpp b/examples/HowToUseJIT/HowToUseJIT.cpp
index e9100cf..889b34a 100644
--- a/examples/HowToUseJIT/HowToUseJIT.cpp
+++ b/examples/HowToUseJIT/HowToUseJIT.cpp
@@ -94,7 +94,7 @@
 
   // 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;