summaryrefslogtreecommitdiffstats
path: root/llvm/tools/lli/lli.cpp
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
commit055148bdc1c359794d4ac9f187f9b8b33837ce52 (patch)
tree28a005948f6d2e16b6ea3703aa781ecdecc6b8ae /llvm/tools/lli/lli.cpp
parent275811125d0e0055d9172ad40fbb4d37a3b881d1 (diff)
downloadbcm5719-llvm-055148bdc1c359794d4ac9f187f9b8b33837ce52.tar.gz
bcm5719-llvm-055148bdc1c359794d4ac9f187f9b8b33837ce52.zip
TraceMode, as you may have heard, is history.
ExecutionEngine::create no longer takes a TraceMode argument. llvm-svn: 9495
Diffstat (limited to 'llvm/tools/lli/lli.cpp')
-rw-r--r--llvm/tools/lli/lli.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/tools/lli/lli.cpp b/llvm/tools/lli/lli.cpp
index 90d8a2fcddd..299b18b59b8 100644
--- a/llvm/tools/lli/lli.cpp
+++ b/llvm/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().
OpenPOWER on IntegriCloud