diff options
author | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2024-02-05 10:22:54 +0000 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2024-02-08 13:17:19 +0000 |
commit | 2ad2aef41451a2eea07a2b2989d748c19866151f (patch) | |
tree | aa39d20a44d74d54490c2b533c217cb0f1e77137 /lib | |
parent | 3cc09b687befcb8d24f6215774e19d60f4e22cf6 (diff) | |
download | klee-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)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Module/OptimizeLegacy.cpp | 4 |
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 |