x86_64: implement strict float @reduce(.Min)

This commit is contained in:
Jacob Young 2025-05-28 04:49:57 -04:00
parent d29ea656b0
commit f5a1aaf2fc
2 changed files with 2430 additions and 127 deletions

File diff suppressed because it is too large Load Diff

View File

@ -5100,6 +5100,7 @@ inline fn reduceMin(comptime Type: type, rhs: Type) @typeInfo(Type).vector.child
test reduceMin {
const test_reduce_min = unary(reduceMin, .{});
try test_reduce_min.testIntVectors();
try test_reduce_min.testFloatVectors();
}
inline fn reduceMax(comptime Type: type, rhs: Type) @typeInfo(Type).vector.child {