aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Env.ml
diff options
context:
space:
mode:
Diffstat (limited to 'cparser/Env.ml')
-rw-r--r--cparser/Env.ml17
1 files changed, 3 insertions, 14 deletions
diff --git a/cparser/Env.ml b/cparser/Env.ml
index 65df6cb9..9ab5e657 100644
--- a/cparser/Env.ml
+++ b/cparser/Env.ml
@@ -118,15 +118,9 @@ let lookup_ident env s =
with Not_found ->
raise(Error(Unbound_identifier s))
-let lookup_tag env s =
- try
- IdentMap.lookup s env.env_tag
- with Not_found ->
- raise(Error(Unbound_tag(s, "tag")))
-
let lookup_struct env s =
try
- let (id, ci as res) = IdentMap.lookup s env.env_tag in
+ let (_, ci as res) = IdentMap.lookup s env.env_tag in
if ci.ci_kind <> Struct then
raise(Error(Tag_mismatch(s, "struct", "union")));
res
@@ -135,7 +129,7 @@ let lookup_struct env s =
let lookup_union env s =
try
- let (id, ci as res) = IdentMap.lookup s env.env_tag in
+ let (_, ci as res) = IdentMap.lookup s env.env_tag in
if ci.ci_kind <> Union then
raise(Error(Tag_mismatch(s, "union", "struct")));
res
@@ -169,11 +163,6 @@ let find_ident env id =
with Not_found ->
raise(Error(Unbound_identifier(id.name)))
-let find_tag env id =
- try IdentMap.find id env.env_tag
- with Not_found ->
- raise(Error(Unbound_tag(id.name, "tag")))
-
let find_struct env id =
try
let ci = IdentMap.find id env.env_tag in
@@ -256,7 +245,7 @@ let add_typedef env id info =
{ env with env_typedef = IdentMap.add id info env.env_typedef }
let add_enum env id info =
- let add_enum_item env (id, v, exp) =
+ let add_enum_item env (id, v, _) =
{ env with env_ident = IdentMap.add id (II_enum v) env.env_ident } in
List.fold_left add_enum_item
{ env with env_enum = IdentMap.add id info env.env_enum }