mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
22 lines
338 B
ArmAsm
22 lines
338 B
ArmAsm
|
.type foo, %gnu_indirect_function
|
||
|
.global __GI_foo
|
||
|
.hidden __GI_foo
|
||
|
.set __GI_foo, foo
|
||
|
.text
|
||
|
.globl foo
|
||
|
.type foo, @function
|
||
|
foo:
|
||
|
ret
|
||
|
.size foo, .-foo
|
||
|
.globl bar
|
||
|
.type bar, @function
|
||
|
bar:
|
||
|
call .L6
|
||
|
.L6:
|
||
|
popl %ebx
|
||
|
addl $_GLOBAL_OFFSET_TABLE_+[.-.L6], %ebx
|
||
|
call __GI_foo
|
||
|
leal __GI_foo@GOTOFF(%ebx), %eax
|
||
|
ret
|
||
|
.size bar, .-bar
|