aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Cutil.mli
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2015-05-05 12:07:26 +0200
committerBernhard Schommer <bernhardschommer@gmail.com>2015-05-05 12:07:26 +0200
commit684fd1a0989e6daa3bc20ddba925481a4f2182bf (patch)
tree1c6275fd1c4b8af029561aa362034078b8c2cbba /cparser/Cutil.mli
parentbe6875023bc0b33701042cdf923cd9e07b4fb316 (diff)
parente9fa9cbdc761f8c033e9b702f7485982faed3f7d (diff)
downloadcompcert-684fd1a0989e6daa3bc20ddba925481a4f2182bf.tar.gz
compcert-684fd1a0989e6daa3bc20ddba925481a4f2182bf.zip
Merge branch 'master' into json_export
Diffstat (limited to 'cparser/Cutil.mli')
-rw-r--r--cparser/Cutil.mli4
1 files changed, 4 insertions, 0 deletions
diff --git a/cparser/Cutil.mli b/cparser/Cutil.mli
index 9d41f8fa..b1f77944 100644
--- a/cparser/Cutil.mli
+++ b/cparser/Cutil.mli
@@ -195,6 +195,10 @@ val fundef_typ: fundef -> typ
val int_representable: int64 -> int -> bool -> bool
(* Is the given int64 representable with the given number of bits and
signedness? *)
+val field_of_dot_access: Env.t -> typ -> string -> field
+ (* Return the field info for a [x.field] access *)
+val field_of_arrow_access: Env.t -> typ -> string -> field
+ (* Return the field info for a [x->field] access *)
(* Constructors *)