| author | |
| committer | |
| log | f592674642ba79601e0eeda0492063c40e2206db |
| tree | 0a1e4f5a9d1caab80ca517363450ac5c252ea655 |
| parent | 566e4ab6b19fb8075dd591968eeb4cad53679cfd |
| signature |
A debug build of the compiler detects invalid union access since `classifyInputFile`
detects `.archive` and this line constructed a `.object` input.1 files changed, 1 insertions(+), 1 deletions(-)
src/link/MachO.zig+1-1| ... | ... | @@ -416,7 +416,7 @@ pub fn flushModule( |
| 416 | 416 | } |
| 417 | 417 | |
| 418 | 418 | if (comp.config.any_fuzz) { |
| 419 | try positionals.append(try link.openObjectInput(diags, comp.fuzzer_lib.?.full_object_path)); | |
| 419 | try positionals.append(try link.openArchiveInput(diags, comp.fuzzer_lib.?.full_object_path, false, false)); | |
| 420 | 420 | } |
| 421 | 421 | |
| 422 | 422 | if (comp.ubsan_rt_lib) |crt_file| { |