aboutsummaryrefslogtreecommitdiff
path: root/src/target.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2025-02-10 21:37:28 -0500
committerJacob Young <jacobly0@users.noreply.github.com>2025-02-12 10:11:54 -0500
commit13ca87e2043453dc3e62a9530b7e2687aa37d6eb (patch)
tree983ec0907deed348f44e8b53b84b9e154ce69642 /src/target.zig
parent348d1773baec1f9b853827b8318735d9686b699d (diff)
downloadzig-13ca87e2043453dc3e62a9530b7e2687aa37d6eb.tar.gz
zig-13ca87e2043453dc3e62a9530b7e2687aa37d6eb.zip
x86_64: implement conversions between float and int vectors
Diffstat (limited to 'src/target.zig')
-rw-r--r--src/target.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/target.zig b/src/target.zig
index 29387f0cd5..2496c4b07f 100644
--- a/src/target.zig
+++ b/src/target.zig
@@ -746,6 +746,7 @@ pub inline fn backendSupportsFeature(backend: std.builtin.CompilerBackend, compt
else => true,
},
.all_vector_instructions => switch (backend) {
+ .stage2_x86_64 => true,
else => false,
},
};