From a4a1ebdeed16494270a0111aeee6fec8e04ef7ee Mon Sep 17 00:00:00 2001 From: Jacob Young Date: Sat, 24 May 2025 11:37:13 -0400 Subject: x86_64: implement optimized float `@reduce(.Mul)` --- src/Sema.zig | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/Sema.zig') 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, -- cgit v1.2.3