From 1e56e6242c6bb366365a878459691d08bd911aa3 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Wed, 20 Nov 2002 12:56:01 +0000 Subject: [PATCH] * write.c (adjust_reloc_syms): Don't reduce SEC_MERGE fixups with fx_subsy non-NULL. --- gas/ChangeLog | 5 +++++ gas/write.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index fa25e6018..6dab2b4d5 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2002-11-20 Alan Modra + + * write.c (adjust_reloc_syms): Don't reduce SEC_MERGE fixups with + fx_subsy non-NULL. + 2002-11-19 Richard Henderson * config/obj-elf.c (obj_elf_visibility): Overwrite only the diff --git a/gas/write.c b/gas/write.c index 73eb793e1..b1c27d78b 100644 --- a/gas/write.c +++ b/gas/write.c @@ -868,7 +868,8 @@ adjust_reloc_syms (abfd, sec, xxx) /* Never adjust a reloc against local symbol in a merge section with non-zero addend. */ - if ((symsec->flags & SEC_MERGE) != 0 && fixp->fx_offset != 0) + if ((symsec->flags & SEC_MERGE) != 0 + && (fixp->fx_offset != 0 || fixp->fx_subsy != NULL)) continue; /* Never adjust a reloc against TLS local symbol. */ -- 2.11.4.GIT