From b55377a5ab34ba17336d25a9336a3bc18f535c43 Mon Sep 17 00:00:00 2001 From: Jacob Young Date: Tue, 24 Oct 2023 12:08:26 -0400 Subject: x86_64: pass more tests * 128-bit integer multiplication with overflow * more instruction encodings used by std inline asm * implement the `try_ptr` air instruction * follow correct stack frame abi * enable full panic handler * enable stack traces --- lib/std/Thread/Condition.zig | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/std/Thread/Condition.zig') diff --git a/lib/std/Thread/Condition.zig b/lib/std/Thread/Condition.zig index 9b8ef919a6..88e5f73d81 100644 --- a/lib/std/Thread/Condition.zig +++ b/lib/std/Thread/Condition.zig @@ -371,6 +371,8 @@ 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