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 /lib/std/simd.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 'lib/std/simd.zig')
| -rw-r--r-- | lib/std/simd.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/simd.zig b/lib/std/simd.zig index 53df15aa18..72b71938cb 100644 --- a/lib/std/simd.zig +++ b/lib/std/simd.zig @@ -436,7 +436,7 @@ pub fn prefixScan(comptime op: std.builtin.ReduceOp, comptime hop: isize, vec: a } test "vector prefix scan" { - if (@import("builtin").zig_backend == .stage2_x86_64) return error.SkipZigTest; + if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; if (comptime builtin.cpu.arch.isMIPS()) { return error.SkipZigTest; |
