aboutsummaryrefslogtreecommitdiff
path: root/decl.c
diff options
context:
space:
mode:
Diffstat (limited to 'decl.c')
-rw-r--r--decl.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/decl.c b/decl.c
index fd1745c..7f57dc8 100644
--- a/decl.c
+++ b/decl.c
@@ -179,9 +179,7 @@ tagspec(struct scope *s)
*t = typeuint;
t->kind = kind;
} else {
- t = mktype(kind, PROPOBJECT);
- if (kind == TYPESTRUCT)
- t->prop |= PROPAGGR;
+ t = mktype(kind, 0);
t->size = 0;
t->align = 0;
t->u.structunion.tag = tag;
@@ -507,7 +505,7 @@ declaratortypes(struct scope *s, struct list *result, char **name, bool allowabs
case TLPAREN: /* function declarator */
next();
func:
- t = mktype(TYPEFUNC, PROPDERIVED);
+ t = mktype(TYPEFUNC, 0);
t->qual = QUALNONE;
t->u.func.isprototype = false;
t->u.func.isvararg = false;