mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-03 22:06:50 +00:00
18 lines
262 B
ArmAsm
18 lines
262 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 __GI_foo
|
|
leaq __GI_foo(%rip), %rax
|
|
ret
|
|
.size bar, .-bar
|