mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
712ec27916
Add the GOT base for R_386_GOT32/R_386_GOT32X relocations against IFUNC symbols if there is no base register and disallow them for PIC. bfd/ PR ld/20244 * elf32-i386.c (elf_i386_relocate_section): Add the .got.plt section address for R_386_GOT32/R_386_GOT32X relocations against IFUNC symbols if there is no base register and return error for PIC. ld/ PR ld/20244 * testsuite/ld-i386/i386.exp: Run pr20244-2a, pr20244-2b, pr20244-2c and pr20244-2d. * testsuite/ld-i386/no-plt.exp: Run pr20244-3a and pr20244-3b. * testsuite/ld-i386/pr20244-2.s: New file. * testsuite/ld-i386/pr20244-2a.d: Likewise. * testsuite/ld-i386/pr20244-2b.d: Likewise. * testsuite/ld-i386/pr20244-2c.d: Likewise. * testsuite/ld-i386/pr20244-2d.d: Likewise. * testsuite/ld-i386/pr20244-3a.c: Likewise. * testsuite/ld-i386/pr20244-3b.S: Likewise. * testsuite/ld-i386/pr20244-3c.S: Likewise. * testsuite/ld-i386/pr20244-3d.S: Likewise.
16 lines
300 B
ArmAsm
16 lines
300 B
ArmAsm
.text
|
|
.p2align 4,,15
|
|
.globl get_func1
|
|
.type get_func1, @function
|
|
get_func1:
|
|
movl func1@GOT, %eax
|
|
ret
|
|
.size get_func1, .-get_func1
|
|
.p2align 4,,15
|
|
.globl call_func1
|
|
.type call_func1, @function
|
|
call_func1:
|
|
jmp *func1@GOT
|
|
.size call_func1, .-call_func1
|
|
.section .note.GNU-stack,"",@progbits
|