aboutsummaryrefslogtreecommitdiff
path: root/std/math/log.zig
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2018-01-14 15:17:07 -0500
committerAndrew Kelley <superjoe30@gmail.com>2018-01-14 15:17:07 -0500
commit793f031c4ca7fdd230ef262895acf3e454be49dd (patch)
treefbc4de778931f6644388b9607a9830de34d04be5 /std/math/log.zig
parente7e7625633d4d6ef41b6f9cbf2f02d49945a9cda (diff)
downloadzig-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/log.zig')
-rw-r--r--std/math/log.zig5
1 files changed, 0 insertions, 5 deletions
diff --git a/std/math/log.zig b/std/math/log.zig
index 4edb77bb1a..6bed4c0da1 100644
--- a/std/math/log.zig
+++ b/std/math/log.zig
@@ -56,11 +56,6 @@ test "math.log float" {
}
test "math.log float_special" {
- 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(log(f32, 2, 0.2301974) == math.log2(f32(0.2301974)));
assert(log(f32, 10, 0.2301974) == math.log10(f32(0.2301974)));