Bug du "let rec" dans un "let rec"... il manquait une correction dans

la fonction Bytegen.size_of_lambda.


git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@885 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Daniel de Rauglaudre 1996-06-14 14:36:17 +00:00
parent 27f9eb0fed
commit cfd2ee96af
1 changed files with 2 additions and 0 deletions

View File

@ -113,6 +113,8 @@ let rec size_of_lambda = function
List.length args
| Llet(str, id, arg, body) ->
size_of_lambda body
| Lletrec(bindings, body) ->
size_of_lambda body
| _ ->
fatal_error "Bytegen.size_of_lambda"