summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-10-24 20:00:17 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-10-24 20:00:17 +0000
commit2f828c343bc2c5dc644f0dcc07c7cfd5b8b7b4da (patch)
tree1e9ddcd016008fe871a3477b49441c28410650f0 /tools
parent7c7a3a2d7fd7b2204f59cb0dcdbe12b44f4989a6 (diff)
downloadllvm-2f828c343bc2c5dc644f0dcc07c7cfd5b8b7b4da.tar.gz
llvm-2f828c343bc2c5dc644f0dcc07c7cfd5b8b7b4da.tar.bz2
llvm-2f828c343bc2c5dc644f0dcc07c7cfd5b8b7b4da.tar.xz
TraceMode, as you may have heard, is history.
ExecutionEngine::create no longer takes a TraceMode argument. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9495 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/lli/lli.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp
index 90d8a2fcdd..299b18b59b 100644
--- a/tools/lli/lli.cpp
+++ b/tools/lli/lli.cpp
@@ -39,8 +39,6 @@ namespace {
MainFunction("f", cl::desc("Function to execute"), cl::init("main"),
cl::value_desc("function name"));
- cl::opt<bool> TraceMode("trace", cl::desc("Enable Tracing"));
-
cl::opt<bool> ForceInterpreter("force-interpreter",
cl::desc("Force interpretation: disable JIT"),
cl::init(false));
@@ -137,7 +135,7 @@ int main(int argc, char **argv, char * const *envp) {
}
ExecutionEngine *EE =
- ExecutionEngine::create(MP, ForceInterpreter, TraceMode);
+ ExecutionEngine::create(MP, ForceInterpreter);
assert(EE && "Couldn't create an ExecutionEngine, not even an interpreter?");
// Add the module's name to the start of the vector of arguments to main().