| ... | @@ -6121,6 +6121,7 @@ static void do_code_gen(CodeGen *g) { | ... | @@ -6121,6 +6121,7 @@ static void do_code_gen(CodeGen *g) { |
| 6121 | zig_panic("unable to write assembly file %s: %s", buf_ptr(output_path), err_msg); | 6121 | zig_panic("unable to write assembly file %s: %s", buf_ptr(output_path), err_msg); |
| 6122 | } | 6122 | } |
| 6123 | validate_inline_fns(g); | 6123 | validate_inline_fns(g); |
| | 6124 | g->link_objects.append(output_path); |
| 6124 | break; | 6125 | break; |
| 6125 | | 6126 | |
| 6126 | case EmitFileTypeLLVMIr: | 6127 | case EmitFileTypeLLVMIr: |
| ... | @@ -6130,6 +6131,7 @@ static void do_code_gen(CodeGen *g) { | ... | @@ -6130,6 +6131,7 @@ static void do_code_gen(CodeGen *g) { |
| 6130 | zig_panic("unable to write llvm-ir file %s: %s", buf_ptr(output_path), err_msg); | 6131 | zig_panic("unable to write llvm-ir file %s: %s", buf_ptr(output_path), err_msg); |
| 6131 | } | 6132 | } |
| 6132 | validate_inline_fns(g); | 6133 | validate_inline_fns(g); |
| | 6134 | g->link_objects.append(output_path); |
| 6133 | break; | 6135 | break; |
| 6134 | | 6136 | |
| 6135 | default: | 6137 | default: |