aboutsummaryrefslogtreecommitdiff
path: root/lib/std/math.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2024-01-03 12:57:01 -0800
committerGitHub <noreply@github.com>2024-01-03 12:57:01 -0800
commita9337bef2d54201ab304bb3428479339ecaacbac (patch)
treee253679e591e86d84a29139b7d7987eab3c3718f /lib/std/math.zig
parent9a56228c2b90d94d01bb76784c77fdec5710cf0a (diff)
parent047d6d996e540eaa50ec24b0751d147bfe2cacdb (diff)
downloadzig-a9337bef2d54201ab304bb3428479339ecaacbac.tar.gz
zig-a9337bef2d54201ab304bb3428479339ecaacbac.zip
Merge pull request #18431 from jacobly0/cbe-extern
cbe: fix non-msvc externs and exports
Diffstat (limited to 'lib/std/math.zig')
-rw-r--r--lib/std/math.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/std/math.zig b/lib/std/math.zig
index 6e27df0b21..b7a44bd927 100644
--- a/lib/std/math.zig
+++ b/lib/std/math.zig
@@ -1266,6 +1266,7 @@ 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;