diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2001-01-25 14:40:54 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2001-01-25 14:40:54 +0000 |
commit | 36efd7ee97ae64df0cd959e19eb100be5e6d9b3a (patch) | |
tree | 976085779ff92a1a644cfd3c358c37c01a6629ea /asmcomp | |
parent | 9e926d0080d9762a7d010df9772142e25fb93234 (diff) | |
download | ocaml-36efd7ee97ae64df0cd959e19eb100be5e6d9b3a.tar.gz |
Suppression de messages de debug qui etaient restes par erreur
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3375 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'asmcomp')
-rw-r--r-- | asmcomp/cmmgen.ml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/asmcomp/cmmgen.ml b/asmcomp/cmmgen.ml index 290432e695..2993f783f0 100644 --- a/asmcomp/cmmgen.ml +++ b/asmcomp/cmmgen.ml @@ -1316,19 +1316,16 @@ and transl_unbox_int bi = function | exp -> unbox_int bi (transl exp) and transl_unbox_let box_fn unbox_fn transl_unbox_fn id exp body = - print_string "transl_unbox_let "; let unboxed_id = Ident.create (Ident.name id) in let (tr_body, need_boxed, is_assigned) = subst_boxed_number unbox_fn id unboxed_id (transl body) in if need_boxed && is_assigned then - (print_string "need_boxed & is_assigned\n"; - Clet(id, transl exp, transl body)) + Clet(id, transl exp, transl body) else - (print_string "unboxing!\n"; Clet(unboxed_id, transl_unbox_fn exp, if need_boxed then Clet(id, box_fn(Cvar unboxed_id), tr_body) - else tr_body)) + else tr_body) and make_catch ncatch body handler = match body with | Cexit (nexit,[]) when nexit=ncatch -> handler |