aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/Core/StatsTracker.cpp
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2019-03-11 13:13:58 +0000
committerMartinNowack <martin.nowack@gmail.com>2019-03-13 10:25:33 +0000
commit92fd446f72136594e6519065fbd5bca3e0aee8e3 (patch)
treec324641a9054253cd22da88094680f6d1d305621 /lib/Core/StatsTracker.cpp
parent8cfce20c9c53b6ec4ff2d54c9fa2b494ee699ebc (diff)
downloadklee-92fd446f72136594e6519065fbd5bca3e0aee8e3.tar.gz
Consistently use "default=true" and "default=false" instead of "default=on" and "default=off" in --help
Diffstat (limited to 'lib/Core/StatsTracker.cpp')
-rw-r--r--lib/Core/StatsTracker.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Core/StatsTracker.cpp b/lib/Core/StatsTracker.cpp
index 5ad0f174..0300d1ba 100644
--- a/lib/Core/StatsTracker.cpp
+++ b/lib/Core/StatsTracker.cpp
@@ -58,17 +58,17 @@ namespace {
cl::opt<bool>
TrackInstructionTime("track-instruction-time",
cl::init(false),
- cl::desc("Enable tracking of time for individual instructions (default=off)"));
+ cl::desc("Enable tracking of time for individual instructions (default=false)"));
cl::opt<bool>
OutputStats("output-stats",
cl::init(true),
- cl::desc("Write running stats trace file (default=on)"));
+ cl::desc("Write running stats trace file (default=true)"));
cl::opt<bool>
OutputIStats("output-istats",
cl::init(true),
- cl::desc("Write instruction level statistics in callgrind format (default=on)"));
+ cl::desc("Write instruction level statistics in callgrind format (default=true)"));
cl::opt<std::string>
StatsWriteInterval("stats-write-interval",
@@ -99,7 +99,7 @@ namespace {
cl::opt<bool>
UseCallPaths("use-call-paths",
cl::init(true),
- cl::desc("Enable calltree tracking for instruction level statistics (default=on)"));
+ cl::desc("Enable calltree tracking for instruction level statistics (default=true)"));
}