Commit cdf7e7dba9

Luuk de Gram <luuk@degram.dev>
2022-10-22 14:02:16
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.
1 parent 09236d2
Changed files (1)
lib/compiler_rt.zig
@@ -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");
 }