diff options
author | Michael Forney <mforney@mforney.org> | 2019-03-01 23:10:43 -0800 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-03-01 23:59:37 -0800 |
commit | ba938ae247c78838a942980dfcf9e6618a6ce610 (patch) | |
tree | 8f79c73fce7bcd872db266d98367c47165c6db23 | |
parent | 8754499cd20a79aeff1bc208941db830fb8e44a4 (diff) | |
download | cproc-ba938ae247c78838a942980dfcf9e6618a6ce610.tar.xz |
init: Check for incomplete types
Fixes #28.
-rw-r--r-- | init.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -216,11 +216,14 @@ parseinit(struct scope *s, struct type *t) struct expression *expr; struct type *base; + t = typeunqual(t, NULL); p.cur = NULL; p.sub = p.obj; p.sub->offset = 0; - p.sub->type = typeunqual(t, NULL); + p.sub->type = t; p.sub->iscur = false; + if (t->incomplete && !(t->kind == TYPEARRAY && t->array.length == 0)) + error(&tok.loc, "initializer specified for incomplete type"); for (;;) { if (p.cur) { if (tok.kind == TLBRACK || tok.kind == TPERIOD) |