aboutsummaryrefslogtreecommitdiff
path: root/std/math/round.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/round.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/round.zig')
-rw-r--r--std/math/round.zig5
1 files changed, 0 insertions, 5 deletions
diff --git a/std/math/round.zig b/std/math/round.zig
index 3abee040ef..06b9e41f58 100644
--- a/std/math/round.zig
+++ b/std/math/round.zig
@@ -98,11 +98,6 @@ test "math.round" {
}
test "math.round32" {
- 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(round32(1.3) == 1.0);
assert(round32(-1.3) == -1.0);
assert(round32(0.2) == 0.0);