mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
macho/sym: Record initial symbol number always
The special segment may need this information for future fix-ups. Based-on-code-from: zenith432 <zenith432@users.sourceforge.net> Signed-off-by: Chang S. Bae <changseok.bae@gmail.com>
This commit is contained in:
parent
0bdd7f1546
commit
bffd2b7def
@ -1123,6 +1123,9 @@ static void macho_symdef(char *name, int32_t section, int64_t offset,
|
||||
special_used = true;
|
||||
}
|
||||
|
||||
/* track the initially allocated symbol number for use in future fix-ups */
|
||||
sym->initial_snum = nsyms;
|
||||
|
||||
if (section == NO_SEG) {
|
||||
/* symbols in no section get absolute */
|
||||
sym->type |= N_ABS;
|
||||
@ -1137,9 +1140,6 @@ static void macho_symdef(char *name, int32_t section, int64_t offset,
|
||||
/* get the in-file index of the section the symbol was defined in */
|
||||
sym->sect = s ? s->fileindex : NO_SECT;
|
||||
|
||||
/* track the initially allocated symbol number for use in future fix-ups */
|
||||
sym->initial_snum = nsyms;
|
||||
|
||||
if (!s) {
|
||||
/* remember symbol number of references to external
|
||||
** symbols, this works because every external symbol gets
|
||||
|
Loading…
x
Reference in New Issue
Block a user