mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
2005-12-05 Eric Christopher <echristo@apple.com>
* nasm/nasm/output/outmacho.c (macho_write_section): Don't add section offset to the symbol to be relocated. (add_reloc): Update comment.
This commit is contained in:
parent
8e5abdeeb9
commit
5547e191fe
@ -314,7 +314,7 @@ static void add_reloc(struct section *sect, long section,
|
||||
|
||||
/* the current end of the section will be the symbol's address for
|
||||
** now, might have to be fixed by macho_fixup_relocs() later on. make
|
||||
** sure, we don't make the symbol scattered by setting the highest
|
||||
** sure we don't make the symbol scattered by setting the highest
|
||||
** bit by accident */
|
||||
r->addr = sect->size & ~R_SCATTERED;
|
||||
r->ext = 0;
|
||||
@ -888,11 +888,17 @@ static void macho_write_section (void)
|
||||
}
|
||||
}
|
||||
|
||||
/* add sizes of previous sections to current offset */
|
||||
for (s2 = sects, fi = 1;
|
||||
s2 != NULL && fi < r->snum; s2 = s2->next, fi++)
|
||||
if ((s2->flags & SECTION_TYPE) != S_ZEROFILL)
|
||||
l += s2->size;
|
||||
/* If the relocation is internal add to the current section
|
||||
offset. Otherwise the only value we need is the symbol
|
||||
offset which we already have. The linker takes care
|
||||
of the rest of the address. */
|
||||
if (!r->ext) {
|
||||
/* add sizes of previous sections to current offset */
|
||||
for (s2 = sects, fi = 1;
|
||||
s2 != NULL && fi < r->snum; s2 = s2->next, fi++)
|
||||
if ((s2->flags & SECTION_TYPE) != S_ZEROFILL)
|
||||
l += s2->size;
|
||||
}
|
||||
|
||||
/* write new offset back */
|
||||
if (r->length == 2)
|
||||
|
Loading…
x
Reference in New Issue
Block a user