diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2025-05-12 06:46:38 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2025-05-17 02:08:41 -0400 |
| commit | 6d68a494c8a5abf86c406a82c0f744a999084abe (patch) | |
| tree | 1d6c6da9b80e4b38779569a3c7f29b8846430372 /src/Type.zig | |
| parent | 6dbf1c7682f446d5684fbfafd5274361ac6b64cf (diff) | |
| download | zig-6d68a494c8a5abf86c406a82c0f744a999084abe.tar.gz zig-6d68a494c8a5abf86c406a82c0f744a999084abe.zip | |
x86_64: rewrite vector `+|`
Diffstat (limited to 'src/Type.zig')
| -rw-r--r-- | src/Type.zig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Type.zig b/src/Type.zig index f3e33abbec..47ad87a426 100644 --- a/src/Type.zig +++ b/src/Type.zig @@ -4096,6 +4096,7 @@ pub const single_const_pointer_to_comptime_int: Type = .{ .ip_index = .single_co pub const slice_const_u8: Type = .{ .ip_index = .slice_const_u8_type }; pub const slice_const_u8_sentinel_0: Type = .{ .ip_index = .slice_const_u8_sentinel_0_type }; +pub const vector_8_i8: Type = .{ .ip_index = .vector_8_i8_type }; pub const vector_16_i8: Type = .{ .ip_index = .vector_16_i8_type }; pub const vector_32_i8: Type = .{ .ip_index = .vector_32_i8_type }; pub const vector_1_u8: Type = .{ .ip_index = .vector_1_u8_type }; @@ -4104,8 +4105,10 @@ pub const vector_4_u8: Type = .{ .ip_index = .vector_4_u8_type }; pub const vector_8_u8: Type = .{ .ip_index = .vector_8_u8_type }; pub const vector_16_u8: Type = .{ .ip_index = .vector_16_u8_type }; pub const vector_32_u8: Type = .{ .ip_index = .vector_32_u8_type }; +pub const vector_4_i16: Type = .{ .ip_index = .vector_4_i16_type }; pub const vector_8_i16: Type = .{ .ip_index = .vector_8_i16_type }; pub const vector_16_i16: Type = .{ .ip_index = .vector_16_i16_type }; +pub const vector_4_u16: Type = .{ .ip_index = .vector_4_u16_type }; pub const vector_8_u16: Type = .{ .ip_index = .vector_8_u16_type }; pub const vector_16_u16: Type = .{ .ip_index = .vector_16_u16_type }; pub const vector_4_i32: Type = .{ .ip_index = .vector_4_i32_type }; |
