Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct --memo-z3 help message #879

Open
wants to merge 1 commit into
base: sail2
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/bin/sail.ml
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,8 @@ let rec options =
("-strict_bitvector", Arg.Set Initial_check.opt_strict_bitvector, " require bitvectors to be indexed by naturals");
("-plugin", Arg.String (fun plugin -> load_plugin options plugin), "<file> load a Sail plugin");
("-just_check", Arg.Set opt_just_check, " terminate immediately after typechecking");
("-memo_z3", Arg.Set opt_memo_z3, " memoize calls to z3, improving performance when typechecking repeatedly");
("-no_memo_z3", Arg.Clear opt_memo_z3, " do not memoize calls to z3 (default)");
("-memo_z3", Arg.Set opt_memo_z3, " memoize calls to z3, improving performance when typechecking repeatedly (default)");
("-no_memo_z3", Arg.Clear opt_memo_z3, " do not memoize calls to z3");
( "-have_feature",
Arg.String (fun symbol -> opt_have_feature := Some symbol),
"<symbol> check if a feature symbol is set by default"
Expand Down
Loading