aboutsummaryrefslogtreecommitdiffstats
path: root/cparser
diff options
context:
space:
mode:
Diffstat (limited to 'cparser')
-rw-r--r--cparser/Cutil.ml7
-rw-r--r--cparser/Elab.ml3
2 files changed, 8 insertions, 2 deletions
diff --git a/cparser/Cutil.ml b/cparser/Cutil.ml
index 94e3e85d..c82ada26 100644
--- a/cparser/Cutil.ml
+++ b/cparser/Cutil.ml
@@ -552,7 +552,12 @@ let struct_layout env members =
(* Determine whether a type is incomplete *)
let incomplete_type env t =
- match sizeof env t with None -> true | Some _ -> false
+ match unroll env t with
+ | TVoid _ -> true (* Void is always incomplete *)
+ | _ -> begin match sizeof env t with
+ | None -> true
+ | Some _ -> false
+ end
(* Computing composite_info records *)
diff --git a/cparser/Elab.ml b/cparser/Elab.ml
index aed84a38..d7a1212a 100644
--- a/cparser/Elab.ml
+++ b/cparser/Elab.ml
@@ -706,7 +706,8 @@ and elab_struct_or_union_info kind loc env members attrs =
(* C99: ty[] allowed as last field of a struct *)
| fld :: rem ->
if wrap incomplete_type loc env' fld.fld_typ then
- error loc "member '%s' has incomplete type" fld.fld_name;
+ (* Must be fatal otherwise we get problems constructing the init *)
+ fatal_error loc "member '%s' has incomplete type" fld.fld_name;
check_incomplete rem in
check_incomplete m;
(* Warn for empty structs or unions *)