mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 14:48:47 +00:00
Remove intrinsics.x86_mmx type
This commit is contained in:
@@ -144,7 +144,6 @@ Type_Info_Simd_Vector :: struct {
|
||||
elem: ^Type_Info,
|
||||
elem_size: int,
|
||||
count: int,
|
||||
is_x86_mmx: bool,
|
||||
};
|
||||
Type_Info_Relative_Pointer :: struct {
|
||||
pointer: ^Type_Info,
|
||||
|
||||
@@ -347,14 +347,10 @@ print_type :: proc "contextless" (ti: ^Type_Info) {
|
||||
|
||||
|
||||
case Type_Info_Simd_Vector:
|
||||
if info.is_x86_mmx {
|
||||
print_string("intrinsics.x86_mmx");
|
||||
} else {
|
||||
print_string("#simd[");
|
||||
print_u64(u64(info.count));
|
||||
print_byte(']');
|
||||
print_type(info.elem);
|
||||
}
|
||||
print_string("#simd[");
|
||||
print_u64(u64(info.count));
|
||||
print_byte(']');
|
||||
print_type(info.elem);
|
||||
|
||||
case Type_Info_Relative_Pointer:
|
||||
print_string("#relative(");
|
||||
|
||||
Reference in New Issue
Block a user