diff options
Diffstat (limited to 'bfd/elf32-sh.c')
-rw-r--r-- | bfd/elf32-sh.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bfd/elf32-sh.c b/bfd/elf32-sh.c index de827f3..80c0f81 100644 --- a/bfd/elf32-sh.c +++ b/bfd/elf32-sh.c @@ -6002,7 +6002,9 @@ tpoff (struct bfd_link_info *info, bfd_vma address) return 0; /* SH TLS ABI is variant I and static TLS block start just after tcbhead structure which has 2 pointer fields. */ - return address - elf_hash_table (info)->tls_sec->vma + 8; + return (address - elf_hash_table (info)->tls_sec->vma + + align_power ((bfd_vma) 8, + elf_hash_table (info)->tls_sec->alignment_power)); } static asection * |