aboutsummaryrefslogtreecommitdiffstats
path: root/backend/CMtypecheck.ml
diff options
context:
space:
mode:
Diffstat (limited to 'backend/CMtypecheck.ml')
-rw-r--r--backend/CMtypecheck.ml12
1 files changed, 6 insertions, 6 deletions
diff --git a/backend/CMtypecheck.ml b/backend/CMtypecheck.ml
index 399eb9bd..cd0d25dc 100644
--- a/backend/CMtypecheck.ml
+++ b/backend/CMtypecheck.ml
@@ -296,12 +296,12 @@ let rec type_stmt env blk ret s =
| Sexit n ->
if Nat.to_int n >= blk then
raise (Error (sprintf "Bad exit(%d)\n" (Nat.to_int n)))
- | Sswitch(islong, e, _, _) ->
+ | Sswitch(islong, e, cases, deflt) ->
unify (type_expr env [] e) (if islong then tlong else tint)
| Sreturn None ->
begin match ret with
| None -> ()
- | Some _ -> raise (Error ("return without argument"))
+ | Some tret -> raise (Error ("return without argument"))
end
| Sreturn (Some e) ->
begin match ret with
@@ -322,9 +322,9 @@ let rec type_stmt env blk ret s =
with Error s ->
raise (Error (sprintf "In tail call:\n%s" s))
end
- | Slabel(_, s1) ->
+ | Slabel(lbl, s1) ->
type_stmt env blk ret s1
- | Sgoto _ ->
+ | Sgoto lbl ->
()
let rec env_of_vars idl =
@@ -343,8 +343,8 @@ let type_function id f =
let type_globdef (id, gd) =
match gd with
| Gfun(Internal f) -> type_function id f
- | Gfun(External _) -> ()
- | Gvar _ -> ()
+ | Gfun(External ef) -> ()
+ | Gvar v -> ()
let type_program p =
List.iter type_globdef p.prog_defs; p