diff options
author | Luc Maranget <luc.maranget@inria.fr> | 2000-08-11 19:50:59 +0000 |
---|---|---|
committer | Luc Maranget <luc.maranget@inria.fr> | 2000-08-11 19:50:59 +0000 |
commit | d043fecf185164dcb2114e3617345624caeb28c8 (patch) | |
tree | 6603bc4a816c58efa6b3b9d831a8e0e19190da3c /asmcomp/cmm.ml | |
parent | 3ad649f365636b4f39e26d96b23eb8ddfc4101d2 (diff) | |
download | ocaml-d043fecf185164dcb2114e3617345624caeb28c8.tar.gz |
new or-pat compilation + exhaustiveness used in compilation
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3273 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'asmcomp/cmm.ml')
-rw-r--r-- | asmcomp/cmm.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/asmcomp/cmm.ml b/asmcomp/cmm.ml index 87d5525f25..c85c047a75 100644 --- a/asmcomp/cmm.ml +++ b/asmcomp/cmm.ml @@ -100,8 +100,8 @@ type expression = | Cifthenelse of expression * expression * expression | Cswitch of expression * int array * expression array | Cloop of expression - | Ccatch of expression * expression - | Cexit + | Ccatch of int * expression * expression + | Cexit of int | Ctrywith of expression * Ident.t * expression type fundecl = |