diff --git a/gas/ChangeLog b/gas/ChangeLog index 72d741b46c..2925f1345d 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2002-11-29 Kaz Kojima + + * config/tc-sh.c (md_apply_fix3): Call S_SET_THREAD_LOCAL + for TLS relocations. + 2002-11-29 Jakub Jelinek * config/tc-ia64.c (md_apply_fix3): Add default case. diff --git a/gas/config/tc-sh.c b/gas/config/tc-sh.c index 5c623033ba..eac7fc1450 100644 --- a/gas/config/tc-sh.c +++ b/gas/config/tc-sh.c @@ -3544,18 +3544,22 @@ md_apply_fix3 (fixP, valP, seg) md_number_to_chars (buf, val, 4); break; - case BFD_RELOC_32_GOT_PCREL: - case BFD_RELOC_SH_GOTPLT32: case BFD_RELOC_SH_TLS_GD_32: case BFD_RELOC_SH_TLS_LD_32: case BFD_RELOC_SH_TLS_IE_32: + S_SET_THREAD_LOCAL (fixP->fx_addsy); + /* Fallthrough */ + case BFD_RELOC_32_GOT_PCREL: + case BFD_RELOC_SH_GOTPLT32: * valP = 0; /* Fully resolved at runtime. No addend. */ md_number_to_chars (buf, 0, 4); break; - case BFD_RELOC_32_GOTOFF: case BFD_RELOC_SH_TLS_LDO_32: case BFD_RELOC_SH_TLS_LE_32: + S_SET_THREAD_LOCAL (fixP->fx_addsy); + /* Fallthrough */ + case BFD_RELOC_32_GOTOFF: md_number_to_chars (buf, val, 4); break; #endif