aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ExecutionEngine
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-10-24 19:58:38 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-10-24 19:58:38 +0000
commit20a277e162f971ec1b9c6f2c90a214c177d54f99 (patch)
tree3d8ec4c96899c707f0899f5f8e67e7bde1d6f8d7 /lib/ExecutionEngine
parent9583acb8a092765dec76cb19fbceb12ee141731f (diff)
downloadexternal_llvm-20a277e162f971ec1b9c6f2c90a214c177d54f99.zip
external_llvm-20a277e162f971ec1b9c6f2c90a214c177d54f99.tar.gz
external_llvm-20a277e162f971ec1b9c6f2c90a214c177d54f99.tar.bz2
ExecutionEngine::create no longer takes a TraceMode argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9488 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine')
-rw-r--r--lib/ExecutionEngine/ExecutionEngine.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/ExecutionEngine/ExecutionEngine.cpp b/lib/ExecutionEngine/ExecutionEngine.cpp
index 38bd14a..dd64724 100644
--- a/lib/ExecutionEngine/ExecutionEngine.cpp
+++ b/lib/ExecutionEngine/ExecutionEngine.cpp
@@ -47,18 +47,17 @@ ExecutionEngine::~ExecutionEngine() {
/// NULL is returned.
///
ExecutionEngine *ExecutionEngine::create(ModuleProvider *MP,
- bool ForceInterpreter,
- bool TraceMode) {
+ bool ForceInterpreter) {
ExecutionEngine *EE = 0;
- // If there is nothing that is forcing us to use the interpreter, make a JIT.
- if (!ForceInterpreter && !TraceMode)
+ // Unless the interpreter was explicitly selected, make a JIT.
+ if (!ForceInterpreter)
EE = VM::create(MP);
// If we can't make a JIT, make an interpreter instead.
try {
if (EE == 0)
- EE = Interpreter::create(MP->materializeModule(), TraceMode);
+ EE = Interpreter::create(MP->materializeModule());
} catch (...) {
EE = 0;
}