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/Build/Cache.zig | 8 -------- 1 file changed, 8 deletions(-) (limited to 'lib/std/Build/Cache.zig') diff --git a/lib/std/Build/Cache.zig b/lib/std/Build/Cache.zig index 5dcdeca079..a5943be6bb 100644 --- a/lib/std/Build/Cache.zig +++ b/lib/std/Build/Cache.zig @@ -1007,8 +1007,6 @@ test "cache file and then recall it" { return error.SkipZigTest; } - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; - var tmp = testing.tmpDir(.{}); defer tmp.cleanup(); @@ -1075,8 +1073,6 @@ test "check that changing a file makes cache fail" { return error.SkipZigTest; } - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; - var tmp = testing.tmpDir(.{}); defer tmp.cleanup(); @@ -1151,8 +1147,6 @@ test "no file inputs" { return error.SkipZigTest; } - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; - var tmp = testing.tmpDir(.{}); defer tmp.cleanup(); @@ -1201,8 +1195,6 @@ test "Manifest with files added after initial hash work" { return error.SkipZigTest; } - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; - var tmp = testing.tmpDir(.{}); defer tmp.cleanup(); -- cgit v1.2.3