From: Graydon Hoare Date: Thu, 8 Jul 2010 15:25:12 +0000 (-0700) Subject: Build fix from jmuizelaar (on ocamlc versions that notice this bug; drat, not all do) X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=48488b0dcf06bd729f0920e7744efd3b06017c58;p=rust.git Build fix from jmuizelaar (on ocamlc versions that notice this bug; drat, not all do) --- diff --git a/AUTHORS.txt b/AUTHORS.txt index 9496c0b6b1e..95aeaf3b4b6 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -7,6 +7,7 @@ Other authors: Andreas Gal Brendan Eich Dave Herman +Jeff Mulzelaar Matt Brubeck Michael Bebenita Patrick Walton diff --git a/src/boot/me/alias.ml b/src/boot/me/alias.ml index 2c507335871..d98316efc8c 100644 --- a/src/boot/me/alias.ml +++ b/src/boot/me/alias.ml @@ -41,7 +41,7 @@ let alias_analysis_visitor begin fun i slot -> match slot.Ast.slot_mode with - Ast.MODE_alias _ -> + Ast.MODE_alias -> alias_atom args.(i) | _ -> () end diff --git a/src/boot/me/semant.ml b/src/boot/me/semant.ml index 8d2ed8ac5ea..c67bb822268 100644 --- a/src/boot/me/semant.ml +++ b/src/boot/me/semant.ml @@ -1883,8 +1883,8 @@ and slot_referent_type (abi:Abi.abi) (sl:Ast.slot) : Il.referent_ty = let rty = referent_type abi (slot_ty sl) in match sl.Ast.slot_mode with - | Ast.MODE_local _ -> rty - | Ast.MODE_alias _ -> sp rty + | Ast.MODE_local -> rty + | Ast.MODE_alias -> sp rty ;; let task_rty (abi:Abi.abi) : Il.referent_ty = diff --git a/src/boot/me/trans.ml b/src/boot/me/trans.ml index 6a14a1cec26..f77386a95b4 100644 --- a/src/boot/me/trans.ml +++ b/src/boot/me/trans.ml @@ -2859,7 +2859,7 @@ let trans_visitor Ast.MODE_local -> cell - | Ast.MODE_alias _ -> + | Ast.MODE_alias -> if initializing then cell else deref cell