diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2025-05-24 11:37:13 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2025-05-28 15:10:22 -0400 |
| commit | a4a1ebdeed16494270a0111aeee6fec8e04ef7ee (patch) | |
| tree | 6a3cac6bbd6efde299d15991fa04b261e4459890 /src/Sema.zig | |
| parent | 612f5784cf0a02b4d3be5aaf9e3822d72e220c96 (diff) | |
| download | zig-a4a1ebdeed16494270a0111aeee6fec8e04ef7ee.tar.gz zig-a4a1ebdeed16494270a0111aeee6fec8e04ef7ee.zip | |
x86_64: implement optimized float `@reduce(.Mul)`
Diffstat (limited to 'src/Sema.zig')
| -rw-r--r-- | src/Sema.zig | 4 |
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, |
