aboutsummaryrefslogtreecommitdiff
path: root/decl.c
diff options
context:
space:
mode:
Diffstat (limited to 'decl.c')
-rw-r--r--decl.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/decl.c b/decl.c
index 3a84a02..fc48dc9 100644
--- a/decl.c
+++ b/decl.c
@@ -420,6 +420,20 @@ declspecs(struct scope *s, enum storageclass *sc, enum funcspec *fs, int *align)
++ntypes;
expect(TRPAREN, "to close 'typeof'");
break;
+ case TTYPEOF_UNQUAL:
+ next();
+ expect(TLPAREN, "after 'typeof_unqual'");
+ t = typename(s, NULL);
+ if (!t) {
+ e = expr(s);
+ if (e->decayed)
+ e = e->base;
+ t = e->type;
+ delexpr(e);
+ }
+ ++ntypes;
+ expect(TRPAREN, "to close 'typeof_unqual'");
+ break;
/* 6.7.5 Alignment specifier */
case TALIGNAS: