diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-10-27 01:40:14 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2023-10-27 03:33:49 -0400 |
| commit | b0cf620fe3032d485b581c8ab6239f719ef2cada (patch) | |
| tree | ebfe07c173767ce05ad52a90dbb0fe0e1b5a0925 /lib/std/simd.zig | |
| parent | 42bca3e2ee3adcfcdb7282c6eaa60f93ad6625cd (diff) | |
| download | zig-b0cf620fe3032d485b581c8ab6239f719ef2cada.tar.gz zig-b0cf620fe3032d485b581c8ab6239f719ef2cada.zip | |
x86_64: fix `cond_br`
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; |
