about summary refs log tree commit diff homepage
path: root/lib/Core/UserSearcher.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/UserSearcher.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/UserSearcher.cpp')
-rw-r--r--lib/Core/UserSearcher.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Core/UserSearcher.cpp b/lib/Core/UserSearcher.cpp
index 4af732e5..754b3796 100644
--- a/lib/Core/UserSearcher.cpp
+++ b/lib/Core/UserSearcher.cpp
@@ -55,14 +55,14 @@ cl::list<Searcher::CoreSearchType> CoreSearch(
 cl::opt<bool> UseIterativeDeepeningTimeSearch(
     "use-iterative-deepening-time-search",
     cl::desc(
-        "Use iterative deepening time search (experimental) (default=off)"),
+        "Use iterative deepening time search (experimental) (default=false)"),
     cl::init(false), cl::cat(SearchCat));
 
 cl::opt<bool> UseBatchingSearch(
     "use-batching-search",
     cl::desc("Use batching searcher (keep running selected state for N "
              "instructions/time, see --batch-instructions and --batch-time) "
-             "(default=off)"),
+             "(default=false)"),
     cl::init(false), cl::cat(SearchCat));
 
 cl::opt<unsigned>