mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-23 15:32:26 +00:00
17 lines
269 B
ArmAsm
17 lines
269 B
ArmAsm
.section .data.rel,"aw",@progbits
|
|
.globl ifunc_ptrt
|
|
.type ifunc_ptr, @object
|
|
ifunc_ptr:
|
|
.dc.a ifunc
|
|
.text
|
|
.type ifunc, @gnu_indirect_function
|
|
.globl ifunc
|
|
ifunc:
|
|
ret
|
|
.size ifunc, .-ifunc
|
|
.type bar, @function
|
|
.globl bar
|
|
bar:
|
|
call ifunc@PLT
|
|
.size bar, .-bar
|