diff options
author | Andrea Mattavelli <andreamattavelli@users.noreply.github.com> | 2016-09-29 10:09:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-29 10:09:10 +0100 |
commit | b6eb108e22176d33d4dbaeed0e6603ea919345ad (patch) | |
tree | 0996791d84d6a0699159c5bf886e9f3ae6502663 | |
parent | 43d5145572f4139146cb394e8ede6ea6dcef15b0 (diff) | |
parent | 5c86a82e59bb0976a21530873558f3044884d30f (diff) | |
download | klee-b6eb108e22176d33d4dbaeed0e6603ea919345ad.tar.gz |
Merge pull request #471 from domainexpert/argv-arg
Fixed the description of -posix-runtime option
-rw-r--r-- | tools/klee/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/klee/main.cpp b/tools/klee/main.cpp index e198697c..ee20f5ea 100644 --- a/tools/klee/main.cpp +++ b/tools/klee/main.cpp @@ -151,7 +151,7 @@ namespace { cl::opt<bool> WithPOSIXRuntime("posix-runtime", - cl::desc("Link with POSIX runtime. Options that can be passed as arguments to the programs are: --sym-argv <max-len> --sym-argvs <min-argvs> <max-argvs> <max-len> + file model options"), + cl::desc("Link with POSIX runtime. Options that can be passed as arguments to the programs are: --sym-arg <max-len> --sym-args <min-argvs> <max-argvs> <max-len> + file model options"), cl::init(false)); cl::opt<bool> |