[llvm-commits] CVS: llvm/tools/lli/lli.cpp
Brian Gaeke
gaeke at cs.uiuc.edu
Fri Oct 24 15:02:37 PDT 2003
Changes in directory llvm/tools/lli:
lli.cpp updated: 1.32 -> 1.33
---
Log message:
TraceMode, as you may have heard, is history.
ExecutionEngine::create no longer takes a TraceMode argument.
---
Diffs of the changes: (+1 -3)
Index: llvm/tools/lli/lli.cpp
diff -u llvm/tools/lli/lli.cpp:1.32 llvm/tools/lli/lli.cpp:1.33
--- llvm/tools/lli/lli.cpp:1.32 Mon Oct 20 15:40:30 2003
+++ llvm/tools/lli/lli.cpp Fri Oct 24 15:00:17 2003
@@ -39,8 +39,6 @@
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 @@
}
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().
More information about the llvm-commits
mailing list