Fix missing alignment init on zero and param types

This commit is contained in:
Bill Currie 2020-02-15 16:08:21 +09:00
parent 3e651b43f8
commit be30a0eb19
1 changed files with 3 additions and 3 deletions

View File

@ -82,9 +82,9 @@ type_t *type_nil;
type_t *type_default; type_t *type_default;
// these will be built up further // these will be built up further
type_t type_va_list = { ev_invalid, 0, ty_struct }; type_t type_va_list = { ev_invalid, 0, 0, ty_struct };
type_t type_param = { ev_invalid, 0, ty_struct }; type_t type_param = { ev_invalid, 0, 0, ty_struct };
type_t type_zero = { ev_invalid, 0, ty_struct }; type_t type_zero = { ev_invalid, 0, 0, ty_struct };
type_t type_type_encodings = { ev_invalid, "@type_encodings", 0, type_t type_type_encodings = { ev_invalid, "@type_encodings", 0,
ty_struct }; ty_struct };