From 2f828c343bc2c5dc644f0dcc07c7cfd5b8b7b4da Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Fri, 24 Oct 2003 20:00:17 +0000 Subject: [PATCH] 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 --- tools/lli/lli.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp index 90d8a2fcddd..299b18b59b8 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 TraceMode("trace", cl::desc("Enable Tracing")); - cl::opt 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(). -- 2.34.1