aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/parse.c
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2022-08-06 05:25:16 +0200
committerlemon <lsof@mailbox.org>2022-08-06 05:25:16 +0200
commit3083cf126cf3989b257546aa3b1b69608aac7923 (patch)
treeae6b62edb201d7cbcfe4b1fed528bf875b9919b1 /bootstrap/parse.c
parentb8f676ae7ffe12877d013c5256a785d35915c491 (diff)
sizeof
Diffstat (limited to 'bootstrap/parse.c')
-rw-r--r--bootstrap/parse.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/bootstrap/parse.c b/bootstrap/parse.c
index d55339d..4372cdc 100644
--- a/bootstrap/parse.c
+++ b/bootstrap/parse.c
@@ -922,6 +922,17 @@ pexprimary(struct parser *P) {
ex = parsestructini(P, P->targty);
else if (P->targty->t == TYarr)
ex = parsearrini(P, P->targty);
+ } else if (lexmatch(P, &tok, TKkw_sizeof)) {
+ ex.t = Eintlit;
+ ex.ty = ty_usize;
+ if (lexmatch(P, &tok, '(')) {
+ struct expr exp = parseexpr(P);
+ ex.i = exp.ty->size;
+ lexexpect(P, ')');
+ } else {
+ const struct type *ty = parsetype(P);
+ ex.i = ty->size;
+ }
} else {
experr:
fatal(P, tok.span, "expected expression (near %s)", tok2str(tok));