aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-03-01 23:10:43 -0800
committerMichael Forney <mforney@mforney.org>2019-03-01 23:59:37 -0800
commitba938ae247c78838a942980dfcf9e6618a6ce610 (patch)
tree8f79c73fce7bcd872db266d98367c47165c6db23
parent8754499cd20a79aeff1bc208941db830fb8e44a4 (diff)
downloadcproc-ba938ae247c78838a942980dfcf9e6618a6ce610.tar.xz
init: Check for incomplete types
Fixes #28.
-rw-r--r--init.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/init.c b/init.c
index 20e2f51..3e11c71 100644
--- a/init.c
+++ b/init.c
@@ -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)