diff options
| author | JooperGH <alexandredmfs@gmail.com> | 2022-12-19 11:46:35 +0000 |
|---|---|---|
| committer | JooperGH <alexandredmfs@gmail.com> | 2022-12-19 11:46:35 +0000 |
| commit | 4a70265bfb2a7205e80b527eb46fa4558114ad93 (patch) | |
| tree | ca8c2931e2699427fef1fb48920dc732f61ad340 /src/llvm_backend.cpp | |
| parent | de0d86088020df8185a9b1900273d86c7c60596d (diff) | |
| parent | 0829ac30f743aa567b2da5dc490ff1b2b13ea37c (diff) | |
Merge branch 'master' of https://github.com/odin-lang/Odin into more_dwmapi_bindings
Diffstat (limited to 'src/llvm_backend.cpp')
| -rw-r--r-- | src/llvm_backend.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/llvm_backend.cpp b/src/llvm_backend.cpp index 594224e6a..1182beb53 100644 --- a/src/llvm_backend.cpp +++ b/src/llvm_backend.cpp @@ -1165,7 +1165,7 @@ lbProcedure *lb_create_startup_runtime(lbModule *main_module, lbProcedure *start for (Entity *e : info->init_procedures) { lbValue value = lb_find_procedure_value_from_entity(main_module, e); - lb_emit_call(p, value, {}, ProcInlining_none, false); + lb_emit_call(p, value, {}, ProcInlining_none); } @@ -1243,7 +1243,7 @@ lbProcedure *lb_create_main_procedure(lbModule *m, lbProcedure *startup_runtime) } lbValue startup_runtime_value = {startup_runtime->value, startup_runtime->type}; - lb_emit_call(p, startup_runtime_value, {}, ProcInlining_none, false); + lb_emit_call(p, startup_runtime_value, {}, ProcInlining_none); if (build_context.command_kind == Command_test) { Type *t_Internal_Test = find_type_in_pkg(m->info, str_lit("testing"), str_lit("Internal_Test")); @@ -1304,7 +1304,7 @@ lbProcedure *lb_create_main_procedure(lbModule *m, lbProcedure *startup_runtime) if (call_cleanup) { lbValue cleanup_runtime_value = lb_find_runtime_value(m, str_lit("_cleanup_runtime")); - lb_emit_call(p, cleanup_runtime_value, {}, ProcInlining_none, false); + lb_emit_call(p, cleanup_runtime_value, {}, ProcInlining_none); } |