diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-03-03 18:19:18 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-03-03 18:19:18 +0000 |
commit | 603682ad1d5f422b5565b8d29cd08bb28f8a8edb (patch) | |
tree | d1cd766ae01d3e2512e4b934108046621e1e590f /llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | |
parent | 30ed3bdaf21b4928bb2d73a3cd176dc679c9d796 (diff) | |
download | llvm-603682ad1d5f422b5565b8d29cd08bb28f8a8edb.zip llvm-603682ad1d5f422b5565b8d29cd08bb28f8a8edb.tar.gz llvm-603682ad1d5f422b5565b8d29cd08bb28f8a8edb.tar.bz2 |
Deal with error handling better.
llvm-svn: 34887
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h index abc3e08..04c9e2a 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -120,7 +120,7 @@ public: /// 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. /// |