Add bit_field option to core_type in the compiler

This commit is contained in:
gingerBill
2024-03-07 11:31:00 +00:00
parent 6d5b1800fe
commit 4bb7cd5e4b

View File

@@ -932,6 +932,9 @@ gb_internal Type *core_type(Type *t) {
case Type_Enum:
t = t->Enum.base_type;
continue;
case Type_BitField:
t = t->BitField.backing_type;
continue;
}
break;
}