diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-03 20:34:19 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-03 20:34:19 +0000 |
commit | 82d8277ad5862b54341808812bb4016e52347060 (patch) | |
tree | 372f151a70e25e10986730aedfaa1559c26ff7ce /lib/ExecutionEngine/Interpreter/Interpreter.cpp | |
parent | 6c51a36371e2b7fc476e675c9113953c8756df76 (diff) |
ExecutionEngine.cpp: Move execution engine creation stuff into a new
static method here.
Remove some extra blank lines.
ExecutionEngine.h: Add its prototype.
lli.cpp: Call it.
Make creation method for each type of EE into a static method of its
own subclass.
Interpreter/Interpreter.cpp: ExecutionEngine::createInterpreter -->
Interpreter::create
Interpreter/Interpreter.h: Likewise.
JIT/JIT.cpp: ExecutionEngine::createJIT --> VM::create
JIT/VM.h: Likewise.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8343 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Interpreter/Interpreter.cpp')
-rw-r--r-- | lib/ExecutionEngine/Interpreter/Interpreter.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.cpp b/lib/ExecutionEngine/Interpreter/Interpreter.cpp index 950e6a5727..6f540e2d1a 100644 --- a/lib/ExecutionEngine/Interpreter/Interpreter.cpp +++ b/lib/ExecutionEngine/Interpreter/Interpreter.cpp @@ -9,11 +9,9 @@ #include "Interpreter.h" #include "llvm/Module.h" -/// createInterpreter - Create a new interpreter object. This can never fail. +/// create - Create a new interpreter object. This can never fail. /// -ExecutionEngine *ExecutionEngine::createInterpreter(Module *M, - bool DebugMode, - bool TraceMode) { +ExecutionEngine *Interpreter::create(Module *M, bool DebugMode, bool TraceMode){ bool isLittleEndian; switch (M->getEndianness()) { case Module::LittleEndian: isLittleEndian = true; break; |