aboutsummaryrefslogtreecommitdiff
path: root/lib/std/math
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2025-10-08 16:08:05 -0400
committerAndrew Kelley <andrew@ziglang.org>2025-10-10 22:47:47 -0700
commit2e31077fe0e021858cf2f92f85e5fcfd12c41501 (patch)
tree5f1e04aebfe2e0f440cd3d8426c645d1a723b97b /lib/std/math
parentb2bc6073c8ada065906da9e3b5a4a2e7db04c21d (diff)
downloadzig-2e31077fe0e021858cf2f92f85e5fcfd12c41501.tar.gz
zig-2e31077fe0e021858cf2f92f85e5fcfd12c41501.zip
Coff: implement threadlocal variables
Diffstat (limited to 'lib/std/math')
-rw-r--r--lib/std/math/isnan.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/std/math/isnan.zig b/lib/std/math/isnan.zig
index 7cd8c2e734..b3de93597a 100644
--- a/lib/std/math/isnan.zig
+++ b/lib/std/math/isnan.zig
@@ -28,6 +28,8 @@ test isNan {
}
test isSignalNan {
+ if (builtin.zig_backend == .stage2_x86_64 and builtin.object_format == .coff and builtin.abi != .gnu) return error.SkipZigTest;
+
inline for ([_]type{ f16, f32, f64, f80, f128, c_longdouble }) |T| {
// TODO: Signalling NaN values get converted to quiet NaN values in
// some cases where they shouldn't such that this can fail.