| author | |
| committer | |
| log | cdf7e7dba9cbe80d71cc094b257447e5a9f70767 |
| tree | addd410b797c5a238c3adea81fd4e60d1bde9d75 |
| parent | 09236d29b7722d71533478aa7080706acde28d0d |
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 files changed, 1 insertions(+), 1 deletions(-)
lib/compiler_rt.zig+1-1| ... | ... | @@ -212,6 +212,6 @@ comptime { |
| 212 | 212 | _ = @import("compiler_rt/memcpy.zig"); |
| 213 | 213 | _ = @import("compiler_rt/memset.zig"); |
| 214 | 214 | _ = @import("compiler_rt/memmove.zig"); |
| 215 | _ = @import("compiler_rt/cmp.zig"); | |
| 215 | _ = @import("compiler_rt/memcmp.zig"); | |
| 216 | 216 | _ = @import("compiler_rt/bcmp.zig"); |
| 217 | 217 | } |