mirror of
https://github.com/ziglang/zig.git
synced 2026-01-20 14:25:16 +00:00
fix: correctly import memcmp.zig in compiler-rt
cmp.zig was accidently being referenced twice, rather than importing memcmp.zig. This means that its symbols were also not included in the generated compiler-rt output.
This commit is contained in:
parent
09236d29b7
commit
cdf7e7dba9
@ -212,6 +212,6 @@ comptime {
|
||||
_ = @import("compiler_rt/memcpy.zig");
|
||||
_ = @import("compiler_rt/memset.zig");
|
||||
_ = @import("compiler_rt/memmove.zig");
|
||||
_ = @import("compiler_rt/cmp.zig");
|
||||
_ = @import("compiler_rt/memcmp.zig");
|
||||
_ = @import("compiler_rt/bcmp.zig");
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user