I doubt the address of the Error string was intended
authorDuncan Sands <baldrick@free.fr>
Mon, 7 Jan 2008 19:14:42 +0000 (19:14 +0000)
committerDuncan Sands <baldrick@free.fr>
Mon, 7 Jan 2008 19:14:42 +0000 (19:14 +0000)
to be used for the force_interpreter parameter...
Spotted by gcc-4.2.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45714 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/ExecutionEngineBindings.cpp

index bcb72ea944913c152dceb082dc1362e0a7d75b12..26e0d4141662394ab47216a8afee504f9377d690 100644 (file)
@@ -101,7 +101,8 @@ int LLVMCreateInterpreter(LLVMExecutionEngineRef *OutInterp,
                           LLVMModuleProviderRef MP,
                           char **OutError) {
   std::string Error;
-  if (ExecutionEngine *Interp = ExecutionEngine::create(unwrap(MP), &Error)) {
+  if (ExecutionEngine *Interp =
+      ExecutionEngine::create(unwrap(MP), false, &Error)) {
     *OutInterp = wrap(Interp);
     return 0;
   }