diff options
author | Dan Liew <daniel.liew@imperial.ac.uk> | 2015-12-11 15:03:14 +0000 |
---|---|---|
committer | Dan Liew <daniel.liew@imperial.ac.uk> | 2015-12-11 15:03:14 +0000 |
commit | 48af356e766a73fe33cabbabc7c5edb263fb7d89 (patch) | |
tree | 6353f7e08ad577bf6c62feb42660ea7ea522caae /lib/Core/SpecialFunctionHandler.cpp | |
parent | 9eddbdbddb0e21523dbbec5d21e64b79abcffb5c (diff) | |
download | klee-48af356e766a73fe33cabbabc7c5edb263fb7d89.tar.gz |
Reword help description for ``--silent-klee-assume`` command line
flag as suggested by @ccadar
Diffstat (limited to 'lib/Core/SpecialFunctionHandler.cpp')
-rw-r--r-- | lib/Core/SpecialFunctionHandler.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Core/SpecialFunctionHandler.cpp b/lib/Core/SpecialFunctionHandler.cpp index 8befe8f6..fdd4cdd9 100644 --- a/lib/Core/SpecialFunctionHandler.cpp +++ b/lib/Core/SpecialFunctionHandler.cpp @@ -46,7 +46,9 @@ namespace { cl::opt<bool> SilentKleeAssume("silent-klee-assume", cl::init(false), - cl::desc("Do not treat infeasible assumption as error.")); + cl::desc("Silently terminate paths with an infeasible " + "condition given to klee_assume() rather than " + "emitting an error (default=false)")); } |