diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-10-28 03:16:33 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2023-10-29 07:20:36 -0400 |
| commit | f6f2708d8289e1cd6c24b954c261d478ee73ccfc (patch) | |
| tree | 576863cc60c8626c8b89b01621d0538a4923a9ce /lib/compiler_rt/cos.zig | |
| parent | 1fecf86ebfa352927e2e3aedfd16b0755482e96e (diff) | |
| download | zig-f6f2708d8289e1cd6c24b954c261d478ee73ccfc.tar.gz zig-f6f2708d8289e1cd6c24b954c261d478ee73ccfc.zip | |
x86_64: fix compiler rt test failures
Diffstat (limited to 'lib/compiler_rt/cos.zig')
| -rw-r--r-- | lib/compiler_rt/cos.zig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/compiler_rt/cos.zig b/lib/compiler_rt/cos.zig index b3dbcc21f5..aaf8faa2f3 100644 --- a/lib/compiler_rt/cos.zig +++ b/lib/compiler_rt/cos.zig @@ -134,8 +134,6 @@ pub fn cosl(x: c_longdouble) callconv(.C) c_longdouble { } test "cos32" { - if (@import("builtin").zig_backend == .stage2_x86_64) return error.SkipZigTest; - const epsilon = 0.00001; try expect(math.approxEqAbs(f32, cosf(0.0), 1.0, epsilon)); |
