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:
Luuk de Gram 2022-10-22 14:02:16 +02:00 committed by Jakub Konka
parent 09236d29b7
commit cdf7e7dba9

View File

@ -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");
}