mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
outmacho: Fix relative relocations for 32-bit Mach-O (fix typo)
This unbreaks checkin 84f6860ed53492976c9d79e9a8a0bdc60da78bc6, which was broken due to a transcription error of mine. Zenith432 was faultless in this case. This fixes bug report 3392355. Reported-by: Zenith432 <zenith432@users.sourceforge.net> Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
This commit is contained in:
parent
5e0eb0c08b
commit
b41952986b
@ -465,7 +465,7 @@ static int64_t add_reloc(struct section *sect, int32_t section,
|
||||
r->snum = raa_read(extsyms, section);
|
||||
if (reltype == RL_BRANCH)
|
||||
r->type = X86_64_RELOC_BRANCH;
|
||||
else if (reltype == GENERIC_RELOC_VANILLA)
|
||||
else if (r->type == GENERIC_RELOC_VANILLA)
|
||||
adjust = -sect->size;
|
||||
} else {
|
||||
/* local */
|
||||
|
Loading…
x
Reference in New Issue
Block a user