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/Thread/Condition.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/std/Thread/Condition.zig') diff --git a/lib/std/Thread/Condition.zig b/lib/std/Thread/Condition.zig index 549ea623dd..9b8ef919a6 100644 --- a/lib/std/Thread/Condition.zig +++ b/lib/std/Thread/Condition.zig @@ -324,6 +324,8 @@ test "Condition - wait and signal" { return error.SkipZigTest; } + if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; + const num_threads = 4; const MultiWait = struct { @@ -369,8 +371,6 @@ test "Condition - signal" { return error.SkipZigTest; } - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; - const num_threads = 4; const SignalTest = struct { -- cgit v1.2.3