aboutsummaryrefslogtreecommitdiff
path: root/decl.c
diff options
context:
space:
mode:
Diffstat (limited to 'decl.c')
-rw-r--r--decl.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/decl.c b/decl.c
index 78dc974..7047dda 100644
--- a/decl.c
+++ b/decl.c
@@ -416,8 +416,12 @@ done:
default:
error(&tok.loc, "invalid combination of type specifiers");
}
- if (!t && (tq || (sc && *sc) || (fs && *fs)))
+ if (!t && (tq || sc && *sc || fs && *fs))
error(&tok.loc, "declaration has no type specifier");
+ if (t && tq && t->kind == TYPEARRAY) {
+ t = mkarraytype(t->base, t->qual | tq, t->array.length);
+ tq = QUALNONE;
+ }
return (struct qualtype){t, tq};
}