From: Jakub Jelinek Date: Wed, 11 Sep 2002 09:51:58 +0000 (+0000) Subject: * config/tc-i386.c (md_apply_fix3): Allow addend for X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9dfe7b396fd4aa139fbeda910491f4cc19cbb5a2;p=binutils-gdb.git * config/tc-i386.c (md_apply_fix3): Allow addend for BFD_RELOC_386_TLS_LDO_32, BFD_RELOC_386_TLS_LE and BFD_RELOC_386_TLS_LE_32. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index f8b9d769260..f2cc4c4da3b 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2002-09-11 Jakub Jelinek + + * config/tc-i386.c (md_apply_fix3): Allow addend for + BFD_RELOC_386_TLS_LDO_32, BFD_RELOC_386_TLS_LE and + BFD_RELOC_386_TLS_LE_32. + 2002-09-05 Jeff Law * config/tc-hppa.c (md_apply_fix3): Don't set fx_done for diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index e79ae77dfb3..2a676d738bd 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -4657,10 +4657,7 @@ md_apply_fix3 (fixP, valP, seg) case BFD_RELOC_386_GOT32: case BFD_RELOC_386_TLS_GD: case BFD_RELOC_386_TLS_LDM: - case BFD_RELOC_386_TLS_LDO_32: case BFD_RELOC_386_TLS_IE_32: - case BFD_RELOC_386_TLS_LE_32: - case BFD_RELOC_386_TLS_LE: case BFD_RELOC_X86_64_GOT32: value = 0; /* Fully resolved at runtime. No addend. */ break;