summaryrefslogtreecommitdiff
path: root/tools/lli/lli.cpp
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-09-03 20:34:19 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-09-03 20:34:19 +0000
commit82d8277ad5862b54341808812bb4016e52347060 (patch)
tree372f151a70e25e10986730aedfaa1559c26ff7ce /tools/lli/lli.cpp
parent6c51a36371e2b7fc476e675c9113953c8756df76 (diff)
downloadllvm-82d8277ad5862b54341808812bb4016e52347060.tar.gz
llvm-82d8277ad5862b54341808812bb4016e52347060.tar.bz2
llvm-82d8277ad5862b54341808812bb4016e52347060.tar.xz
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 'tools/lli/lli.cpp')
-rw-r--r--tools/lli/lli.cpp12
1 files changed, 3 insertions, 9 deletions
diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp
index 3b9414a877..36af42168a 100644
--- a/tools/lli/lli.cpp
+++ b/tools/lli/lli.cpp
@@ -59,15 +59,9 @@ int main(int argc, char** argv, const char ** envp) {
exit(1);
}
- ExecutionEngine *EE = 0;
-
- // If there is nothing that is forcing us to use the interpreter, make a JIT.
- if (!ForceInterpreter && !DebugMode && !TraceMode)
- EE = ExecutionEngine::createJIT(M);
-
- // If we can't make a JIT, make an interpreter instead.
- if (EE == 0)
- EE = ExecutionEngine::createInterpreter(M, DebugMode, TraceMode);
+ ExecutionEngine *EE =
+ ExecutionEngine::create (M, ForceInterpreter, DebugMode, TraceMode);
+ assert (EE && "Couldn't create an ExecutionEngine, not even an interpreter?");
// Add the module name to the start of the argv vector...
// But delete .bc first, since programs (and users) might not expect to