about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorMartinNowack <2443641+MartinNowack@users.noreply.github.com>2024-02-05 10:22:54 +0000
committerCristian Cadar <c.cadar@imperial.ac.uk>2024-02-08 13:17:19 +0000
commit2ad2aef41451a2eea07a2b2989d748c19866151f (patch)
treeaa39d20a44d74d54490c2b533c217cb0f1e77137
parent3cc09b687befcb8d24f6215774e19d60f4e22cf6 (diff)
downloadklee-2ad2aef41451a2eea07a2b2989d748c19866151f.tar.gz
Mention default value in help text for `--strip-all` and `--strip-debug`
Co-authored-by: Daniel Schemmel <danielschemmel@users.noreply.github.com>
(cherry picked from commit 5d61fb6114bafbf67c59899d15e397684d4ceb28)
-rw-r--r--lib/Module/OptimizeLegacy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Module/OptimizeLegacy.cpp b/lib/Module/OptimizeLegacy.cpp
index 20c8ac2a..e8d2f499 100644
--- a/lib/Module/OptimizeLegacy.cpp
+++ b/lib/Module/OptimizeLegacy.cpp
@@ -58,12 +58,12 @@ static cl::opt<bool> VerifyEach("verify-each",
                                 cl::init(false), cl::cat(klee::ModuleCat));
 
 static cl::opt<bool>
-    Strip("strip-all", cl::desc("Strip all symbol information from executable"),
+    Strip("strip-all", cl::desc("Strip all symbol information from executable (default=false)"),
           cl::init(false), cl::cat(klee::ModuleCat));
 
 static cl::opt<bool>
     StripDebug("strip-debug",
-               cl::desc("Strip debugger symbol info from executable"),
+               cl::desc("Strip debugger symbol info from executable (default=false)"),
                cl::init(false), cl::cat(klee::ModuleCat));
 
 // A utility function that adds a pass to the pass manager but will also add