diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-10-23 05:38:11 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2023-10-23 22:42:18 -0400 |
| commit | 8f69e977f16d55539d55e8c84852a7c1c6a8cdf3 (patch) | |
| tree | 05ea1ff0469413016fa03d9776b72e786dcc82cc /lib/std/net | |
| parent | fbe8c8938b4efef12a2aa992eec3c947e5f65e70 (diff) | |
| download | zig-8f69e977f16d55539d55e8c84852a7c1c6a8cdf3.tar.gz zig-8f69e977f16d55539d55e8c84852a7c1c6a8cdf3.zip | |
x86_64: implement 128-bit builtins
* `@clz`
* `@ctz`
* `@popCount`
* `@byteSwap`
* `@bitReverse`
* various encodings used by std
Diffstat (limited to 'lib/std/net')
| -rw-r--r-- | lib/std/net/test.zig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/std/net/test.zig b/lib/std/net/test.zig index 0bae00f567..73df32b3b1 100644 --- a/lib/std/net/test.zig +++ b/lib/std/net/test.zig @@ -294,8 +294,6 @@ test "listen on a unix socket, send bytes, receive bytes" { if (builtin.single_threaded) return error.SkipZigTest; if (!net.has_unix_sockets) return error.SkipZigTest; - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; - if (builtin.os.tag == .windows) { _ = try std.os.windows.WSAStartup(2, 2); } |
