diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2018-01-14 15:17:07 -0500 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2018-01-14 15:17:07 -0500 |
| commit | 793f031c4ca7fdd230ef262895acf3e454be49dd (patch) | |
| tree | fbc4de778931f6644388b9607a9830de34d04be5 /std/math/tanh.zig | |
| parent | e7e7625633d4d6ef41b6f9cbf2f02d49945a9cda (diff) | |
| download | zig-793f031c4ca7fdd230ef262895acf3e454be49dd.tar.gz zig-793f031c4ca7fdd230ef262895acf3e454be49dd.zip | |
remove 32-bit windows from supported targets list
we still want to support it, but there are too many bugs
to claim that we support it right now.
See #537
Diffstat (limited to 'std/math/tanh.zig')
| -rw-r--r-- | std/math/tanh.zig | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/std/math/tanh.zig b/std/math/tanh.zig index 813b4f4561..8560538cdf 100644 --- a/std/math/tanh.zig +++ b/std/math/tanh.zig @@ -112,11 +112,6 @@ fn tanh64(x: f64) -> f64 { } test "math.tanh" { - if (builtin.os == builtin.Os.windows and builtin.arch == builtin.Arch.i386) { - // TODO get this test passing - // https://github.com/zig-lang/zig/issues/537 - return; - } assert(tanh(f32(1.5)) == tanh32(1.5)); assert(tanh(f64(1.5)) == tanh64(1.5)); } |
