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/hash_map.zig | |
| 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/hash_map.zig')
| -rw-r--r-- | lib/std/hash_map.zig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/std/hash_map.zig b/lib/std/hash_map.zig index b2fe591a02..40a412bf3c 100644 --- a/lib/std/hash_map.zig +++ b/lib/std/hash_map.zig @@ -1873,8 +1873,6 @@ test "std.hash_map multiple removes on same metadata" { } test "std.hash_map put and remove loop in random order" { - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; - var map = AutoHashMap(u32, u32).init(std.testing.allocator); defer map.deinit(); |
