authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-12-27 17:52:59-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-01-01 19:49:08-07:00
log3a0b76b855b243867d84d8bfa5de550143bed2ae
tree01492575c1fa6957aab589fa0019157a7daf23e5
parente47141a14e568b2aaa866de4e75496fcd63f1621

link.File.Wasm: remove dead condition


1 files changed, 1 insertions(+), 1 deletions(-)

src/link/Wasm.zig+1-1
...@@ -3486,7 +3486,7 @@ pub fn flush(wasm: *Wasm, comp: *Compilation, prog_node: *std.Progress.Node) lin...@@ -3486,7 +3486,7 @@ pub fn flush(wasm: *Wasm, comp: *Compilation, prog_node: *std.Progress.Node) lin
34863486
3487 if (use_lld) {3487 if (use_lld) {
3488 return wasm.linkWithLLD(comp, prog_node);3488 return wasm.linkWithLLD(comp, prog_node);
3489 } else if (use_llvm and !use_lld) {3489 } else if (use_llvm) {
3490 return wasm.linkWithZld(comp, prog_node);3490 return wasm.linkWithZld(comp, prog_node);
3491 } else {3491 } else {
3492 return wasm.flushModule(comp, prog_node);3492 return wasm.flushModule(comp, prog_node);