diff options
| author | LemonBoy <thatlemon@gmail.com> | 2020-01-07 17:44:20 +0100 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-01-07 13:42:47 -0500 |
| commit | e81b505960b106a042e4cb890971ba365a5ef180 (patch) | |
| tree | 751dc190a6b9c95a9cfd33057657e2a55b94b691 /lib/std/fmt/parse_float.zig | |
| parent | 4e4ba6c3e1273fda8137f9f7e26325051f92bfa4 (diff) | |
| download | zig-e81b505960b106a042e4cb890971ba365a5ef180.tar.gz zig-e81b505960b106a042e4cb890971ba365a5ef180.zip | |
Use the correct calling convention for AEABI intrinsics
Diffstat (limited to 'lib/std/fmt/parse_float.zig')
| -rw-r--r-- | lib/std/fmt/parse_float.zig | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/std/fmt/parse_float.zig b/lib/std/fmt/parse_float.zig index 78ce0b7d0a..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 (@import("builtin").arch == .arm) { - // TODO https://github.com/ziglang/zig/issues/3289 - return error.SkipZigTest; - } const testing = std.testing; const expect = testing.expect; const expectEqual = testing.expectEqual; |
