aboutsummaryrefslogtreecommitdiff
path: root/lib/std
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2025-01-29 23:55:55 -0500
committerJacob Young <jacobly0@users.noreply.github.com>2025-01-31 23:00:34 -0500
commitb9531f5de6a36d016a551be68080a314b90eb154 (patch)
tree127fb77990d6f2f7609b723ffa9470c0ab9c8106 /lib/std
parentafa74c6b213efb1ff85b86ce4a9edd5cc03e5a9b (diff)
downloadzig-b9531f5de6a36d016a551be68080a314b90eb154.tar.gz
zig-b9531f5de6a36d016a551be68080a314b90eb154.zip
x86_64: rewrite float vector conversions
Diffstat (limited to 'lib/std')
-rw-r--r--lib/std/zig/Zir.zig3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/std/zig/Zir.zig b/lib/std/zig/Zir.zig
index f26bc288f4..34888e1661 100644
--- a/lib/std/zig/Zir.zig
+++ b/lib/std/zig/Zir.zig
@@ -2128,7 +2128,7 @@ pub const Inst = struct {
ref_start_index = static_len,
_,
- pub const static_len = 92;
+ pub const static_len = 93;
pub fn toRef(i: Index) Inst.Ref {
return @enumFromInt(@intFromEnum(Index.ref_start_index) + @intFromEnum(i));
@@ -2229,6 +2229,7 @@ pub const Inst = struct {
vector_4_u64_type,
vector_4_f16_type,
vector_8_f16_type,
+ vector_2_f32_type,
vector_4_f32_type,
vector_8_f32_type,
vector_2_f64_type,