diff options
author | Chris Lattner <sabre@nondot.org> | 2007-12-06 01:08:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-12-06 01:08:09 +0000 |
commit | 9f2f142d255bc96f109dd5c6524a485937b1f3a1 (patch) | |
tree | 60de6e06844b32d1ffd76090df4610c4920bb3cc /lib/ExecutionEngine/Interpreter/Interpreter.h | |
parent | 7f3a75a5290ba4167403626849d666138383fd74 (diff) |
simplify creation of the interpreter, make ExecutionEngine ctor protected,
delete one ExecutionEngine ctor, minor cleanup.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44646 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r-- | lib/ExecutionEngine/Interpreter/Interpreter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.h b/lib/ExecutionEngine/Interpreter/Interpreter.h index 9ad837c31b..3c5d4b1256 100644 --- a/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -94,7 +94,7 @@ class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> { std::vector<Function*> AtExitHandlers; public: - explicit Interpreter(Module *M); + explicit Interpreter(ModuleProvider *M); ~Interpreter(); /// runAtExitHandlers - Run any functions registered by the program's calls to |