From 8f69e977f16d55539d55e8c84852a7c1c6a8cdf3 Mon Sep 17 00:00:00 2001 From: Jacob Young Date: Mon, 23 Oct 2023 05:38:11 -0400 Subject: x86_64: implement 128-bit builtins * `@clz` * `@ctz` * `@popCount` * `@byteSwap` * `@bitReverse` * various encodings used by std --- lib/std/priority_dequeue.zig | 2 -- 1 file changed, 2 deletions(-) (limited to 'lib/std/priority_dequeue.zig') diff --git a/lib/std/priority_dequeue.zig b/lib/std/priority_dequeue.zig index b68bd97d05..31ae965286 100644 --- a/lib/std/priority_dequeue.zig +++ b/lib/std/priority_dequeue.zig @@ -705,8 +705,6 @@ test "std.PriorityDequeue: fromOwnedSlice trivial case 1" { } test "std.PriorityDequeue: fromOwnedSlice" { - if (@import("builtin").zig_backend == .stage2_x86_64) return error.SkipZigTest; - const items = [_]u32{ 15, 7, 21, 14, 13, 22, 12, 6, 7, 25, 5, 24, 11, 16, 15, 24, 2, 1 }; const queue_items = try testing.allocator.dupe(u32, items[0..]); var queue = PDQ.fromOwnedSlice(testing.allocator, queue_items[0..], {}); -- cgit v1.2.3