[llvm-commits] CVS: llvm/lib/Reoptimizer/LightWtProfiling/Trigger/Initialization.cpp
Brian Gaeke
gaeke at niobe.cs.uiuc.edu
Wed Aug 20 15:42:01 PDT 2003
Changes in directory llvm/lib/Reoptimizer/LightWtProfiling/Trigger:
Initialization.cpp updated: 1.5 -> 1.6
---
Log message:
Incorporate descriptions of options into the options themselves, for -help.
---
Diffs of the changes:
Index: llvm/lib/Reoptimizer/LightWtProfiling/Trigger/Initialization.cpp
diff -u llvm/lib/Reoptimizer/LightWtProfiling/Trigger/Initialization.cpp:1.5 llvm/lib/Reoptimizer/LightWtProfiling/Trigger/Initialization.cpp:1.6
--- llvm/lib/Reoptimizer/LightWtProfiling/Trigger/Initialization.cpp:1.5 Wed Aug 20 15:38:21 2003
+++ llvm/lib/Reoptimizer/LightWtProfiling/Trigger/Initialization.cpp Wed Aug 20 15:41:15 2003
@@ -32,10 +32,12 @@
// fields of the object.
// FIXME: What are the units of these next two?
-// Size of trace cache used for SLI-instrumented code
-cl::opt<int32_t> InstTraceCacheSize("inst-trace-cache-size", cl::init(30000));
-// Size of trace cache used for optimized code
-cl::opt<int32_t> OptTraceCacheSize("opt-trace-cache-size", cl::init(30000));
+cl::opt<int32_t>
+InstTraceCacheSize("inst-trace-cache-size", cl::init(30000),
+ cl::desc("Trace cache size for SLI-instrumented code"));
+cl::opt<int32_t>
+OptTraceCacheSize("opt-trace-cache-size", cl::init(30000),
+ cl::desc("Trace cache size for optimized code"));
cl::opt<int32_t, true>
FLIThreshold("fli-threshold", cl::location(reopt_threshold), cl::init(30));
cl::opt<int32_t, true>
More information about the llvm-commits
mailing list