summaryrefslogtreecommitdiff
path: root/compiler/parser
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/parser')
-rw-r--r--compiler/parser/parser.c6
-rw-r--r--compiler/parser/type.c1
2 files changed, 6 insertions, 1 deletions
diff --git a/compiler/parser/parser.c b/compiler/parser/parser.c
index aeec48b..261385b 100644
--- a/compiler/parser/parser.c
+++ b/compiler/parser/parser.c
@@ -79,6 +79,10 @@ parser_init(struct parser *ctx, char *source)
debug("Initializing parser...\n");
lexer_init(&ctx->lexer, source);
- add_builtin(ctx->types, "uint32", 4, 0);
add_builtin(ctx->types, "any", 0, 0);
+ add_builtin(ctx->types, "uint", sizeof(void*), 0);
+ add_builtin(ctx->types, "uint64", 8, 0);
+ add_builtin(ctx->types, "uint32", 4, 0);
+ add_builtin(ctx->types, "uint16", 2, 0);
+ add_builtin(ctx->types, "uint8", 1, 0);
}
diff --git a/compiler/parser/type.c b/compiler/parser/type.c
index 4ac9327..e0990c3 100644
--- a/compiler/parser/type.c
+++ b/compiler/parser/type.c
@@ -189,6 +189,7 @@ parse_struct(struct parser *ctx, struct type *typ)
}
next_token(ctx);
}
+ typ->size = off;
next_token(ctx);
return true;