aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Cutil.mli
diff options
context:
space:
mode:
authorxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2011-05-12 09:41:09 +0000
committerxleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2011-05-12 09:41:09 +0000
commitfe8baff11737d3785ff51d20ace9ab31665cd295 (patch)
treeedbab0f933283d5ecf455a5f94150c4f09379c51 /cparser/Cutil.mli
parent239cbd2ebab8814b11d7ef43c35a17ce56a7ba0b (diff)
downloadcompcert-kvx-fe8baff11737d3785ff51d20ace9ab31665cd295.tar.gz
compcert-kvx-fe8baff11737d3785ff51d20ace9ab31665cd295.zip
cparser: support for attributes over struct and union.
cparser: added experimental emulation of packed structs (PackedStruct.ml) git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1650 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'cparser/Cutil.mli')
-rw-r--r--cparser/Cutil.mli6
1 files changed, 4 insertions, 2 deletions
diff --git a/cparser/Cutil.mli b/cparser/Cutil.mli
index d4c9441d..7bd9119e 100644
--- a/cparser/Cutil.mli
+++ b/cparser/Cutil.mli
@@ -69,8 +69,10 @@ val incomplete_type : Env.t -> typ -> bool
(* Computing composite_info records *)
-val composite_info_decl: Env.t -> struct_or_union -> Env.composite_info
-val composite_info_def: Env.t -> struct_or_union -> field list -> Env.composite_info
+val composite_info_decl:
+ Env.t -> struct_or_union -> attributes -> Env.composite_info
+val composite_info_def:
+ Env.t -> struct_or_union -> attributes -> field list -> Env.composite_info
(* Type classification functions *)