diff options
| author | Alasdair Armstrong | 2017-07-21 16:49:40 +0100 |
|---|---|---|
| committer | Alasdair Armstrong | 2017-07-21 16:49:40 +0100 |
| commit | b7b6ebc7da062141369d85cd263f1b07561cd396 (patch) | |
| tree | e5aff5fb55d846bd7d5d25fb42098a283218a545 /src/sail.ml | |
| parent | 74f0ba28f7ca4eeff467eb938b919fab6e234f47 (diff) | |
| parent | ffed37084cd0d529a5be98266ed4946cd251e645 (diff) | |
Merge branch 'sail_new_tc' of https://bitbucket.org/Peter_Sewell/sail into sail_new_tc
Diffstat (limited to 'src/sail.ml')
| -rw-r--r-- | src/sail.ml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sail.ml b/src/sail.ml index 007a3208..82ce4f83 100644 --- a/src/sail.ml +++ b/src/sail.ml @@ -152,10 +152,10 @@ let main() = let (ast,kenv,ord) = convert_ast ast in let (ast,type_envs) = check_ast ast kenv ord in - let ast = match !opt_mono_split with + (* let ast = match !opt_mono_split with | [] -> ast | l -> Monomorphise.split_defs l type_envs ast - in + in *) let ast = rewrite_ast ast in let out_name = match !opt_file_out with @@ -176,7 +176,7 @@ let main() = else output "" (Ocaml_out (Some (List.hd !opt_libs_ocaml))) [out_name,ast_ocaml] else ()); (if !(opt_print_lem) - then let ast_lem = rewrite_ast_lem type_envs ast in + then let ast_lem = rewrite_ast_lem ast in if !(opt_libs_lem) = [] then output "" (Lem_out None) [out_name,ast_lem] else output "" (Lem_out (Some (List.hd !opt_libs_lem))) [out_name,ast_lem] |
