aboutsummaryrefslogtreecommitdiff
path: root/lib/std/fmt/parse_float.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-02-07 12:41:02 -0500
committerAndrew Kelley <andrew@ziglang.org>2020-02-07 12:41:46 -0500
commit9e5b2489913f72764ded2089bccd7e612a3cc347 (patch)
tree5bc596e3965020512b6ab0190de13605c57b3449 /lib/std/fmt/parse_float.zig
parenta1576225ca670f729711d906ef37e47c5bad3ae4 (diff)
downloadzig-9e5b2489913f72764ded2089bccd7e612a3cc347.tar.gz
zig-9e5b2489913f72764ded2089bccd7e612a3cc347.zip
remove workarounds for Windows native CPU features
bug fixed in LLVM 10 closes #508
Diffstat (limited to 'lib/std/fmt/parse_float.zig')
-rw-r--r--lib/std/fmt/parse_float.zig4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/std/fmt/parse_float.zig b/lib/std/fmt/parse_float.zig
index 1456dd8e57..2c480852ac 100644
--- a/lib/std/fmt/parse_float.zig
+++ b/lib/std/fmt/parse_float.zig
@@ -382,10 +382,6 @@ pub fn parseFloat(comptime T: type, s: []const u8) !T {
}
test "fmt.parseFloat" {
- if (std.Target.current.isWindows()) {
- // TODO https://github.com/ziglang/zig/issues/508
- return error.SkipZigTest;
- }
const testing = std.testing;
const expect = testing.expect;
const expectEqual = testing.expectEqual;