mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-31 18:32:12 +00:00
Fix using on array in struct
This commit is contained in:
@@ -3211,7 +3211,7 @@ gbString write_type_to_string(gbString str, Type *type) {
|
||||
if (type->SimdVector.is_x86_mmx) {
|
||||
return "intrinsics.x86_mmx";
|
||||
} else {
|
||||
str = gb_string_append_fmt(str, "#vector[%d]", cast(int)type->SimdVector.count);
|
||||
str = gb_string_append_fmt(str, "#simd[%d]", cast(int)type->SimdVector.count);
|
||||
str = write_type_to_string(str, type->SimdVector.elem);
|
||||
}
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user