aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/C.mli
diff options
context:
space:
mode:
authorBernhard Schommer <bschommer@users.noreply.github.com>2016-12-27 19:50:01 +0100
committerGitHub <noreply@github.com>2016-12-27 19:50:01 +0100
commit9b022d749dc5b1fdb091ff8a74647c03fc1f84bb (patch)
tree24218347dd375ebdf36789659a5fd092cc8aa575 /cparser/C.mli
parent647cc8dc9699277cb1e77ae3b07c007186720d59 (diff)
parent860f28734063628f5582be91c7429b14f0922917 (diff)
downloadcompcert-9b022d749dc5b1fdb091ff8a74647c03fc1f84bb.tar.gz
compcert-9b022d749dc5b1fdb091ff8a74647c03fc1f84bb.zip
Merge pull request #153 from AbsInt/anonymous_struct2
Next try for support of anonymous structs.
Diffstat (limited to 'cparser/C.mli')
-rw-r--r--cparser/C.mli3
1 files changed, 2 insertions, 1 deletions
diff --git a/cparser/C.mli b/cparser/C.mli
index 8d8f2805..cacdbe7c 100644
--- a/cparser/C.mli
+++ b/cparser/C.mli
@@ -158,7 +158,8 @@ type typ =
type field = {
fld_name: string;
fld_typ: typ;
- fld_bitfield: int option
+ fld_bitfield: int option;
+ fld_anonymous: bool;
}
type struct_or_union =