* config/tc-sh.c (md_apply_fix3): Call S_SET_THREAD_LOCAL

for TLS relocations.
This commit is contained in:
Kaz Kojima 2002-11-28 23:57:59 +00:00
parent 7925dd68c9
commit 2bba414012
2 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2002-11-29 Kaz Kojima <kkojima@rr.iij4u.or.jp>
* config/tc-sh.c (md_apply_fix3): Call S_SET_THREAD_LOCAL
for TLS relocations.
2002-11-29 Jakub Jelinek <jakub@redhat.com>
* config/tc-ia64.c (md_apply_fix3): Add default case.

View File

@ -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