diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-09-19 11:01:41 +0100 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-09-19 11:01:41 +0100 |
| commit | 6ce889f4ebf10d44fc6c1e5fba794e412dfcf183 (patch) | |
| tree | 89845f7684f36fd690ed6f90b4e0f7b875f06604 /src/llvm_backend.hpp | |
| parent | 5f76d6ce15d6518f327b89ab111a6a90a832d81d (diff) | |
`Entity *` to `std::atomic<Entity *>` to remove the need for a PtrMap+Mutex
Diffstat (limited to 'src/llvm_backend.hpp')
| -rw-r--r-- | src/llvm_backend.hpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/llvm_backend.hpp b/src/llvm_backend.hpp index 370a6f2ca..7fe4651bb 100644 --- a/src/llvm_backend.hpp +++ b/src/llvm_backend.hpp @@ -238,9 +238,6 @@ struct lbGenerator : LinkerData { PtrMap<LLVMContextRef, lbModule *> modules_through_ctx; lbModule default_module; - RecursiveMutex anonymous_proc_lits_mutex; - PtrMap<Ast *, lbProcedure *> anonymous_proc_lits; - isize used_module_count; lbProcedure *startup_runtime; |