diff options
-rw-r--r-- | tools/lli/lli.cpp | 4 |
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(). |