aboutsummaryrefslogtreecommitdiff
path: root/src/Sema.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2025-05-24 11:37:13 -0400
committerJacob Young <jacobly0@users.noreply.github.com>2025-05-28 15:10:22 -0400
commita4a1ebdeed16494270a0111aeee6fec8e04ef7ee (patch)
tree6a3cac6bbd6efde299d15991fa04b261e4459890 /src/Sema.zig
parent612f5784cf0a02b4d3be5aaf9e3822d72e220c96 (diff)
downloadzig-a4a1ebdeed16494270a0111aeee6fec8e04ef7ee.tar.gz
zig-a4a1ebdeed16494270a0111aeee6fec8e04ef7ee.zip
x86_64: implement optimized float `@reduce(.Mul)`
Diffstat (limited to 'src/Sema.zig')
-rw-r--r--src/Sema.zig4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Sema.zig b/src/Sema.zig
index f64ce0754a..2b117aad82 100644
--- a/src/Sema.zig
+++ b/src/Sema.zig
@@ -36571,11 +36571,15 @@ pub fn typeHasOnePossibleValue(sema: *Sema, ty: Type) CompileError!?Value {
.vector_1_u256_type,
.vector_4_f16_type,
.vector_8_f16_type,
+ .vector_16_f16_type,
+ .vector_32_f16_type,
.vector_2_f32_type,
.vector_4_f32_type,
.vector_8_f32_type,
+ .vector_16_f32_type,
.vector_2_f64_type,
.vector_4_f64_type,
+ .vector_8_f64_type,
.anyerror_void_error_union_type,
=> null,
.void_type => Value.void,