diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2025-06-16 16:47:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-16 16:47:00 +0200 |
| commit | 080ee25ecf1991d85038716ca6199ae8dc31c8f5 (patch) | |
| tree | 15c9df991584f50475ce4f160a1cc245b44d6021 /lib/std/mem.zig | |
| parent | 5f7780c533411c6272fb3ce3875b7843cc2287e4 (diff) | |
| parent | 872f68c9cbef44817fdbd57e2b1fb90b5c2ddd8c (diff) | |
| download | zig-080ee25ecf1991d85038716ca6199ae8dc31c8f5.tar.gz zig-080ee25ecf1991d85038716ca6199ae8dc31c8f5.zip | |
Merge pull request #24192 from alichraghi/fix_spirv
rename spirv backend name
Diffstat (limited to 'lib/std/mem.zig')
| -rw-r--r-- | lib/std/mem.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/mem.zig b/lib/std/mem.zig index 79291871b9..978ae71b74 100644 --- a/lib/std/mem.zig +++ b/lib/std/mem.zig @@ -680,7 +680,7 @@ const eqlBytes_allowed = switch (builtin.zig_backend) { .stage2_riscv64, => false, // The SPIR-V backend does not support the optimized path yet. - .stage2_spirv64 => false, + .stage2_spirv => false, // The naive memory comparison implementation is more useful for fuzzers to // find interesting inputs. else => !builtin.fuzz, |
