Use more deterministic module names

This commit is contained in:
gingerBill
2025-02-25 14:35:54 +00:00
parent f9d85a7311
commit 5aafbc7f30
2 changed files with 9 additions and 5 deletions
-3
View File
@@ -182,8 +182,6 @@ struct lbModule {
StringMap<lbProcedure *> gen_procs; // key is the canonicalized name
std::atomic<u32> nested_type_name_guid;
Array<lbProcedure *> procedures_to_generate;
Array<Entity *> global_procedures_to_create;
Array<Entity *> global_types_to_create;
@@ -229,7 +227,6 @@ struct lbGenerator : LinkerData {
PtrMap<Ast *, lbProcedure *> anonymous_proc_lits;
std::atomic<u32> global_array_index;
std::atomic<u32> global_generated_index;
isize used_module_count;