commit | d4c0e62413ac4c81467ce59025c81210ea431752 | [log] [tgz] |
---|---|---|
author | Reid Spencer <rspencer@reidspencer.com> | Sat Mar 03 18:19:18 2007 +0000 |
committer | Reid Spencer <rspencer@reidspencer.com> | Sat Mar 03 18:19:18 2007 +0000 |
tree | 4206b3ff623a0e5dc9a4bf3b47540281beb70b0f | |
parent | c923435a5953993c046b6259a8c4c0589e00b69f [diff] [blame] |
Deal with error handling better. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34887 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.h b/lib/ExecutionEngine/Interpreter/Interpreter.h index abc3e08..04c9e2a 100644 --- a/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/lib/ExecutionEngine/Interpreter/Interpreter.h
@@ -120,7 +120,7 @@ /// create - Create an interpreter ExecutionEngine. This can never fail. /// - static ExecutionEngine *create(ModuleProvider *M); + static ExecutionEngine *create(ModuleProvider *M, std::string *ErrorStr = 0); /// run - Start execution with the specified function and arguments. ///