aboutsummaryrefslogtreecommitdiff
path: root/lib/std/math.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2024-01-01 17:48:40 -0700
committerAndrew Kelley <andrew@ziglang.org>2024-01-01 17:49:57 -0700
commit2b589783602c5428ecde9dbb3f41a81f85eb0f25 (patch)
tree1243f6c66249ccee39c22f39f7b7144dba9d60b9 /lib/std/math.zig
parente426ae43aec0e57ddbdde9813365cad0394a0030 (diff)
downloadzig-2b589783602c5428ecde9dbb3f41a81f85eb0f25.tar.gz
zig-2b589783602c5428ecde9dbb3f41a81f85eb0f25.zip
Revert "Merge pull request #17824 from kcbanner/fixup_msvc_fmax"
This reverts commit 7161ed79c4abcaccdd56fe0b4fbd3d93472d41b8, reversing changes made to 3f2a65594e1d3c0a4f4943a4ea522e8405db81e0. Unfortunately, this sat in the PR queue too long and the merge broke the zig1.wasm bootstrap process.
Diffstat (limited to 'lib/std/math.zig')
-rw-r--r--lib/std/math.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/std/math.zig b/lib/std/math.zig
index b7a44bd927..6e27df0b21 100644
--- a/lib/std/math.zig
+++ b/lib/std/math.zig
@@ -1266,7 +1266,6 @@ pub fn lerp(a: anytype, b: anytype, t: anytype) @TypeOf(a, b, t) {
}
test "lerp" {
- if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/17884
if (builtin.zig_backend == .stage2_x86_64 and
!comptime std.Target.x86.featureSetHas(builtin.cpu.features, .fma)) return error.SkipZigTest;