diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-10-27 08:29:24 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-27 08:29:24 -0400 |
| commit | 3b0dce8ebd252161bfca237953c00b2a40705b90 (patch) | |
| tree | f0df484b4b6cf67b28dedff0f9622ba319d425c4 /test/behavior/maximum_minimum.zig | |
| parent | 8f48533691e93538846993f78f732272a03a600b (diff) | |
| parent | b0cf620fe3032d485b581c8ab6239f719ef2cada (diff) | |
| download | zig-3b0dce8ebd252161bfca237953c00b2a40705b90.tar.gz zig-3b0dce8ebd252161bfca237953c00b2a40705b90.zip | |
Merge pull request #17716 from jacobly0/x86_64
x86_64: pass more tests
Diffstat (limited to 'test/behavior/maximum_minimum.zig')
| -rw-r--r-- | test/behavior/maximum_minimum.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/behavior/maximum_minimum.zig b/test/behavior/maximum_minimum.zig index 3fabe1aa59..7d19f1dcdc 100644 --- a/test/behavior/maximum_minimum.zig +++ b/test/behavior/maximum_minimum.zig @@ -282,7 +282,7 @@ test "@min/@max notices bounds from vector types when element of comptime-known if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_x86_64 and - !comptime std.Target.x86.featureSetHas(builtin.cpu.features, .sse4_1)) return error.SkipZigTest; + !comptime std.Target.x86.featureSetHas(builtin.cpu.features, .avx)) return error.SkipZigTest; var x: @Vector(2, u32) = .{ 1_000_000, 12345 }; const y: @Vector(2, u16) = .{ 10, undefined }; |
