diff options
author | Chris Lattner <sabre@nondot.org> | 2002-12-08 05:51:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-12-08 05:51:08 +0000 |
commit | bbdabce1e97f77d383def3f06a51c4fc75d114cf (patch) | |
tree | a5c440618c3fa6f8ea9931d8631943e9eac2d529 /tools | |
parent | a1af8bd72b783108ad950e22ba98a402a773111a (diff) | |
download | external_llvm-bbdabce1e97f77d383def3f06a51c4fc75d114cf.zip external_llvm-bbdabce1e97f77d383def3f06a51c4fc75d114cf.tar.gz external_llvm-bbdabce1e97f77d383def3f06a51c4fc75d114cf.tar.bz2 |
Add support to count the number of dynamic instructions executed by LLI
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4955 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/lli/lli.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp index 76e1eb1..3f718e5 100644 --- a/tools/lli/lli.cpp +++ b/tools/lli/lli.cpp @@ -21,10 +21,7 @@ MainFunction ("f", cl::desc("Function to execute"), cl::init("main"), cl::value_desc("function name")); static cl::opt<bool> -DebugMode("debug", cl::desc("Start program in debugger")); - -static cl::alias -DebugModeA("d", cl::desc("Alias for -debug"), cl::aliasopt(DebugMode)); +DebugMode("d", cl::desc("Start program in debugger")); static cl::opt<bool> TraceMode("trace", cl::desc("Enable Tracing")); |