aboutsummaryrefslogtreecommitdiff
path: root/lib/std/mem.zig
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alex@alexrp.com>2025-06-16 16:47:00 +0200
committerGitHub <noreply@github.com>2025-06-16 16:47:00 +0200
commit080ee25ecf1991d85038716ca6199ae8dc31c8f5 (patch)
tree15c9df991584f50475ce4f160a1cc245b44d6021 /lib/std/mem.zig
parent5f7780c533411c6272fb3ce3875b7843cc2287e4 (diff)
parent872f68c9cbef44817fdbd57e2b1fb90b5c2ddd8c (diff)
downloadzig-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.zig2
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,