diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2025-01-23 05:31:46 -0500 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2025-01-24 20:56:11 -0500 |
| commit | b1fa89439ae56001779061c42a08cf9db7906432 (patch) | |
| tree | 6fb1bc031d9ae39b9f12d70bc5e8994c1da497c4 /src/Type.zig | |
| parent | ae3d95fc8dc10c0902dee0605421cec2dbd316b0 (diff) | |
| download | zig-b1fa89439ae56001779061c42a08cf9db7906432.tar.gz zig-b1fa89439ae56001779061c42a08cf9db7906432.zip | |
x86_64: rewrite float vector `@abs` and equality comparisons
Diffstat (limited to 'src/Type.zig')
| -rw-r--r-- | src/Type.zig | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/Type.zig b/src/Type.zig index 0e6ccfa585..4379c9c63f 100644 --- a/src/Type.zig +++ b/src/Type.zig @@ -4174,7 +4174,15 @@ pub const single_const_pointer_to_comptime_int: Type = .{ .ip_index = .single_const_pointer_to_comptime_int_type, }; pub const slice_const_u8_sentinel_0: Type = .{ .ip_index = .slice_const_u8_sentinel_0_type }; -pub const empty_tuple_type: Type = .{ .ip_index = .empty_tuple_type }; + +pub const vector_4_f16: Type = .{ .ip_index = .vector_4_f16_type }; +pub const vector_8_f16: Type = .{ .ip_index = .vector_8_f16_type }; +pub const vector_4_f32: Type = .{ .ip_index = .vector_4_f32_type }; +pub const vector_8_f32: Type = .{ .ip_index = .vector_8_f32_type }; +pub const vector_2_f64: Type = .{ .ip_index = .vector_2_f64_type }; +pub const vector_4_f64: Type = .{ .ip_index = .vector_4_f64_type }; + +pub const empty_tuple: Type = .{ .ip_index = .empty_tuple_type }; pub const generic_poison: Type = .{ .ip_index = .generic_poison_type }; |
