diff options
| author | Brian Campbell | 2019-02-08 18:14:08 +0000 |
|---|---|---|
| committer | Brian Campbell | 2019-02-08 18:17:23 +0000 |
| commit | fc5558d2b62365ea65818947780081dad74d4526 (patch) | |
| tree | 8474a028a3c1925ebf265432d9270c8bdbfb6853 /src | |
| parent | 60897fea38949960d3f0e1370bbf73f157e099ec (diff) | |
Resurrect Sail output option (with new name: -output_sail)
Diffstat (limited to 'src')
| -rw-r--r-- | src/sail.ml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/sail.ml b/src/sail.ml index eeacbb2d..b059ae08 100644 --- a/src/sail.ml +++ b/src/sail.ml @@ -251,6 +251,9 @@ let options = Arg.align ([ ( "-verbose", Arg.Int (fun verbosity -> Util.opt_verbosity := verbosity), " produce verbose output"); + ( "-output_sail", + Arg.Set opt_print_verbose, + " print Sail code after type checking and initial rewriting"); ( "-ddump_tc_ast", Arg.Set opt_ddump_tc_ast, " (debug) dump the typechecked ast to stdout"); |
