Fix bug where @local declarations would get registered as @private for generic modules. #856. Update to consistent tab spacing.

This commit is contained in:
Christoffer Lerno
2023-07-15 19:10:55 +02:00
parent 35bffdadc2
commit 8a4e6f7dd3
54 changed files with 1151 additions and 1126 deletions

View File

@@ -1108,7 +1108,7 @@ Type *type_get_vector(Type *vector_type, unsigned len)
}
static void type_create(const char *name, Type *location, TypeKind kind, unsigned bitsize,
unsigned align, unsigned pref_align)
unsigned align, unsigned pref_align)
{
assert(align);
unsigned byte_size = (bitsize + 7) / 8;