aboutsummaryrefslogtreecommitdiff
path: root/decl.c
diff options
context:
space:
mode:
Diffstat (limited to 'decl.c')
-rw-r--r--decl.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/decl.c b/decl.c
index 4a0d319..324e5aa 100644
--- a/decl.c
+++ b/decl.c
@@ -69,6 +69,8 @@ mkdecl(enum declkind k, struct type *t, enum typequal tq, enum linkage linkage)
d->linkage = linkage;
d->type = t;
d->qual = tq;
+ if (k == DECLOBJECT)
+ d->u.obj.align = t->align;
return d;
}
@@ -944,9 +946,9 @@ decl(struct scope *s, struct func *f)
error(&tok.loc, "typedef '%s' redefined with different type", name);
break;
case DECLOBJECT:
- d = declcommon(s, kind, name, asmname, t, tq, sc, prior);
if (align && align < t->align)
- error(&tok.loc, "specified alignment of object '%s' is less strict than is required by type", name);
+ error(&tok.loc, "object '%s' requires alignment %d, which is stricter than specified alignment %d", name, t->align, align);
+ d = declcommon(s, kind, name, asmname, t, tq, sc, prior);
if (d->u.obj.align < align)
d->u.obj.align = align;
init = NULL;