aboutsummaryrefslogtreecommitdiff
path: root/src/Type.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2025-05-27 19:06:50 -0400
committerJacob Young <jacobly0@users.noreply.github.com>2025-05-28 15:10:22 -0400
commit8bacf3e75703b312c345a79e9bd995d186d63b7d (patch)
treed7aea9c62cde920ee4f243ed3132fba179c4ab04 /src/Type.zig
parent3fd3358f37668e54d214aec57033861ea17fd76d (diff)
downloadzig-8bacf3e75703b312c345a79e9bd995d186d63b7d.tar.gz
zig-8bacf3e75703b312c345a79e9bd995d186d63b7d.zip
x86_64: implement integer `@reduce(.Max)`
Diffstat (limited to 'src/Type.zig')
-rw-r--r--src/Type.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Type.zig b/src/Type.zig
index 7988033501..f957a41808 100644
--- a/src/Type.zig
+++ b/src/Type.zig
@@ -4127,6 +4127,7 @@ 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_32_u16: Type = .{ .ip_index = .vector_32_u16_type };
+pub const vector_2_i32: Type = .{ .ip_index = .vector_2_i32_type };
pub const vector_4_i32: Type = .{ .ip_index = .vector_4_i32_type };
pub const vector_8_i32: Type = .{ .ip_index = .vector_8_i32_type };
pub const vector_16_i32: Type = .{ .ip_index = .vector_16_i32_type };