mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
ead49a57e8
(mips_elf_local_got_index): Use the hash table entry to record the GOT index of forced-local symbols. (mips_elf_initialize_tls_index): Rearrange code. Store the index in either the hash table entry or the mips_got_entry, not both. Add more commentary. (mips_elf_multi_got): Make sure the g->next is nonnull when calling mips_elf_initialize_tls_index. * ld-mips-elf/tls-hidden3a.s, ld-mips-elf/tls-hidden3b.s, * ld-mips-elf/tls-hidden3.d, ld-mips-elf/tls-hidden3.got, * ld-mips-elf/tls-hidden3.ld, ld-mips-elf/tls-hidden3.r, * ld-mips-elf/tls-hidden4a.s, ld-mips-elf/tls-hidden4b.s, * ld-mips-elf/tls-hidden4.got, ld-mips-elf/tls-hidden4.r: New tests. * ld-mips-elf/mips-elf.exp: Run them.
28 lines
293 B
ArmAsm
28 lines
293 B
ArmAsm
.macro load
|
|
.text
|
|
lw $4,%gottprel(foo\@)($gp)
|
|
|
|
.global foo\@
|
|
.type foo\@,@object
|
|
.size foo\@,4
|
|
.section .tdata,"awT",@progbits
|
|
foo\@:
|
|
.word \@
|
|
.endm
|
|
|
|
.rept 4
|
|
load
|
|
.endr
|
|
|
|
.text
|
|
.macro load2
|
|
lw $4,%got(undefb\@)($gp)
|
|
.endm
|
|
|
|
.rept 0x3000
|
|
load2
|
|
.endr
|
|
|
|
.data
|
|
.word undef
|