diff options
author | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2012-07-10 08:25:58 +0000 |
---|---|---|
committer | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2012-07-10 08:25:58 +0000 |
commit | 43c7d1b51c6fb3a91b9729b816630f536d4a60e2 (patch) | |
tree | a6f0ddf5bfdfa37b80ca7bdd07794e1b94336fcd /bytecomp/translcore.ml | |
parent | d04453c5dedcbc4ced9439d8c02b447ffe10fe03 (diff) |
fix PR#5674: move Texp_poly and Texp_newtype to exp_extra
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@12680 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'bytecomp/translcore.ml')
-rw-r--r-- | bytecomp/translcore.ml | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/bytecomp/translcore.ml b/bytecomp/translcore.ml index f034c6492..8490f33b4 100644 --- a/bytecomp/translcore.ml +++ b/bytecomp/translcore.ml @@ -833,9 +833,6 @@ and transl_exp0 e = cl_loc = e.exp_loc; cl_type = Cty_signature cty; cl_env = e.exp_env } - | Texp_poly (exp, _ ) - | Texp_newtype (_, exp) - -> transl_exp exp and transl_list expr_list = List.map transl_exp expr_list |