diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-12-19 16:23:48 +0000 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-12-19 16:23:48 +0000 |
| commit | 70affd7e4484a8054865bea88f4e4c526652d994 (patch) | |
| tree | dd43178c3e12ced8baf6a8c0dc800d078f474503 /src/llvm_backend.cpp | |
| parent | 2260f461babc8634778b9d90244820bb49d0e39c (diff) | |
Disable global variable initialization into separate functions to circumvent an LLVM bug
Diffstat (limited to 'src/llvm_backend.cpp')
| -rw-r--r-- | src/llvm_backend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/llvm_backend.cpp b/src/llvm_backend.cpp index c38150e31..1cde65640 100644 --- a/src/llvm_backend.cpp +++ b/src/llvm_backend.cpp @@ -2085,7 +2085,7 @@ gb_internal void lb_create_startup_runtime_generate_body(lbModule *m, lbProcedur continue; } - if (type_size_of(e->type) > 8) { + if (false && type_size_of(e->type) > 8) { String ename = lb_get_entity_name(m, e); gbString name = gb_string_make(permanent_allocator(), ""); name = gb_string_appendc(name, "__$startup$"); |