aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
diff options
context:
space:
mode:
authorReid Kleckner <reid@kleckner.net>2009-07-18 00:42:18 +0000
committerReid Kleckner <reid@kleckner.net>2009-07-18 00:42:18 +0000
commitfc8a2d5a8390952029e1c47a623e046b744f44d4 (patch)
tree628f6fa3e2de0310edd1fed1e72a666dc19bf884 /llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
parent91ff94d6d9befda562a1384f43ecde6e43b9db99 (diff)
downloadllvm-fc8a2d5a8390952029e1c47a623e046b744f44d4.zip
llvm-fc8a2d5a8390952029e1c47a623e046b744f44d4.tar.gz
llvm-fc8a2d5a8390952029e1c47a623e046b744f44d4.tar.bz2
Add EngineBuilder to ExecutionEngine in favor of the five optional argument EE::create().
Also a test commit. llvm-svn: 76276
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r--llvm/lib/ExecutionEngine/Interpreter/Interpreter.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
index 01771cfe9..10e53e9 100644
--- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
+++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
@@ -108,9 +108,7 @@ public:
/// create - Create an interpreter ExecutionEngine. This can never fail.
///
- static ExecutionEngine *create(ModuleProvider *M, std::string *ErrorStr = 0,
- CodeGenOpt::Level = CodeGenOpt::Default,
- bool GVsWithCode = true);
+ static ExecutionEngine *create(ModuleProvider *M, std::string *ErrorStr = 0);
/// run - Start execution with the specified function and arguments.
///