mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-04 07:44:22 +08:00
b474a2022d
bfd/ * elfxx-mips.c (_bfd_mips_elf_check_relocs): Generate error for TLS_TPREL_HI16(/LO16) relocations in shared library. ld/ * testsuite/ld-mips-elf/pic-reloc-5.s: Add tests for %tprel_hi and %tprel_lo relocations. * testsuite/ld-mips-elf/pic-reloc-6.s: Likewise. * testsuite/ld-mips-elf/pic-reloc-5.d: Update accordingly. * testsuite/ld-mips-elf/pic-reloc-6.d: Likewise. * testsuite/ld-mips-elf/pic-reloc-tls.ld: New test linker script file.
23 lines
400 B
ArmAsm
23 lines
400 B
ArmAsm
.text
|
|
.globl foo
|
|
.globl global_tls
|
|
.ent foo
|
|
foo:
|
|
$LCL:
|
|
lui $2, %hi($LCL)
|
|
addiu $2, %lo($LCL)
|
|
lui $2, %hi(bar)
|
|
addiu $2, %lo(bar)
|
|
lui $a0,%tprel_hi(local_tls)
|
|
addiu $a0,$a0,%tprel_lo(local_tls)
|
|
lui $a0,%tprel_hi(global_tls)
|
|
addiu $a0,$a0,%tprel_lo(global_tls)
|
|
.end foo
|
|
.type local_tls,%object
|
|
.type global_tls,%object
|
|
.section .tbss,"awT",@nobits
|
|
local_tls:
|
|
.word
|
|
global_tls:
|
|
.word
|