diff options
| author | gingerBill <bill@gingerbill.org> | 2020-09-15 19:40:37 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2020-09-15 19:40:37 +0100 |
| commit | ebad8e8990c7202efb37539c6ea916b8c473f659 (patch) | |
| tree | 805d7e90a7bde086691e1fd7e2ebe408d05f2624 /src/ir.cpp | |
| parent | 2475c69f00e2639f6951eb9adfe0a4cdb2fbb475 (diff) | |
Change how `ir.cpp` calls the startup type info procedure
Diffstat (limited to 'src/ir.cpp')
| -rw-r--r-- | src/ir.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir.cpp b/src/ir.cpp index df42df781..4f9ec31f4 100644 --- a/src/ir.cpp +++ b/src/ir.cpp @@ -12863,7 +12863,7 @@ void ir_gen_tree(irGen *s) { ir_begin_procedure_body(proc); defer (ir_end_procedure_body(proc)); - ir_emit_call(proc, startup_type_info, {}, ProcInlining_no_inline); + ir_emit(proc, ir_instr_call(proc, startup_type_info, nullptr, {}, nullptr, nullptr, ProcInlining_none)); for_array(i, global_variables) { irGlobalVariable *var = &global_variables[i]; |