aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-03-03 18:19:18 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-03-03 18:19:18 +0000
commit603682ad1d5f422b5565b8d29cd08bb28f8a8edb (patch)
treed1cd766ae01d3e2512e4b934108046621e1e590f /llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
parent30ed3bdaf21b4928bb2d73a3cd176dc679c9d796 (diff)
downloadllvm-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.h2
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.
///