This commit is contained in:
Nikita Smith
2025-06-06 08:51:19 -07:00
committed by Ryan Fleury
parent 75d02f1c1e
commit 439fd0324d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3140,7 +3140,7 @@ lnk_build_pdb(TP_Context *tp,
U64 image_section_table_count = pe.section_count+1;
ProfBegin("Setup PDB Context");
PDB_Context *pdb = pdb_alloc(config->page_size, config->machine, config->time_stamp, config->age, config->guid);
PDB_Context *pdb = pdb_alloc(config->pdb_page_size, config->machine, config->time_stamp, config->age, config->guid);
ProfEnd();
// move patched type data
+1 -1
View File
@@ -305,7 +305,7 @@ THREAD_POOL_TASK_FUNC(lnk_input_coff_symbol_table)
U64 hash = lnk_symbol_hash(symbol.name);
lnk_symbol_table_push_(task->symtab, arena, worker_id, LNK_SymbolScope_Defined, hash, defn);
lnk_symbol_list_push(arena, &task->weak_lists[task_id], defn);
lnk_symbol_list_push(arena, &task->weak_lists[worker_id], defn);
} break;
case COFF_SymbolValueInterp_Common: {
LNK_Symbol *defn = lnk_make_defined_symbol(arena, symbol.name, obj, symbol_idx);