diff options
author | Daniel de Rauglaudre <daniel.de_rauglaudre@inria.fr> | 1997-06-16 18:10:35 +0000 |
---|---|---|
committer | Daniel de Rauglaudre <daniel.de_rauglaudre@inria.fr> | 1997-06-16 18:10:35 +0000 |
commit | dad36602330bd59028db320c5dc7f9147e248acb (patch) | |
tree | e3e08341ee92523dbefac6e6a3ef9f8d1b3ce1b6 /tools | |
parent | 0a0495227698421fb220599b30c7179d4112c9e7 (diff) | |
download | ocaml-dad36602330bd59028db320c5dc7f9147e248acb.tar.gz |
Ajout systeme pour arite explicite des constructeurs
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1619 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'tools')
-rw-r--r-- | tools/ocamlprof.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/ocamlprof.ml b/tools/ocamlprof.ml index 7fb1f18f8f..a5ee31f5a5 100644 --- a/tools/ocamlprof.ml +++ b/tools/ocamlprof.ml @@ -163,8 +163,8 @@ and rewrite_exp sexp = | Pexp_tuple sexpl -> rewrite_exp_list sexpl - | Pexp_construct(_, None) -> () - | Pexp_construct(_, Some sarg) -> + | Pexp_construct(_, None, _) -> () + | Pexp_construct(_, Some sarg, _) -> rewrite_exp sarg | Pexp_record lid_sexp_list -> |