remove workarounds for Windows native CPU features

bug fixed in LLVM 10

closes #508
This commit is contained in:
Andrew Kelley
2020-02-07 12:41:02 -05:00
parent a1576225ca
commit 9e5b248991
17 changed files with 1 additions and 84 deletions

View File

@@ -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;