Removing heap allocations, Porting to Unix
This commit is contained in:
@@ -45,8 +45,8 @@ Intern_String intern_it;
|
||||
//-----------------------------------------------------------------------------
|
||||
// Type globals
|
||||
//-----------------------------------------------------------------------------
|
||||
const SizeU pointer_size = sizeof(SizeU);
|
||||
const SizeU pointer_align = __alignof(SizeU);
|
||||
const uintptr_t pointer_size = sizeof(uintptr_t);
|
||||
const uintptr_t pointer_align = __alignof(uintptr_t);
|
||||
global Ast_Type type__void = {TYPE_VOID};
|
||||
global Ast_Type type__string = {TYPE_STRING, sizeof(String), __alignof(String)};
|
||||
global Ast_Type type__bool = {TYPE_BOOL, sizeof(bool), __alignof(bool)};
|
||||
|
||||
Reference in New Issue
Block a user