diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1998-04-30 12:12:28 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1998-04-30 12:12:28 +0000 |
commit | baa58a54a938a07810e2fa201448ea277da7dae1 (patch) | |
tree | e3f07040ed8a0f29ab4ba915177d7c5ae56c206a /bytecomp/lambda.ml | |
parent | bdcbaa96025eb71f9aaeaef1573ca234b79fd846 (diff) |
Ajout du let_kind Variable, pour aider les transformations ulterieures (e.g. propagation des constantes entieres dans Closure)
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1944 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'bytecomp/lambda.ml')
-rw-r--r-- | bytecomp/lambda.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bytecomp/lambda.ml b/bytecomp/lambda.ml index e346adb5d..d1f1f5f86 100644 --- a/bytecomp/lambda.ml +++ b/bytecomp/lambda.ml @@ -70,7 +70,7 @@ type structured_constant = type function_kind = Curried | Tupled -type let_kind = Strict | Alias | StrictOpt +type let_kind = Strict | Alias | StrictOpt | Variable type shared_code = (int * int) list |