mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00:00
14 lines
192 B
ArmAsm
14 lines
192 B
ArmAsm
.type foo, %gnu_indirect_function
|
|
.set __GI_foo, foo
|
|
.text
|
|
.type foo, @function
|
|
foo:
|
|
ret
|
|
.size foo, .-foo
|
|
.globl bar
|
|
.type bar, @function
|
|
bar:
|
|
call __GI_foo@PLT
|
|
ret
|
|
.size bar, .-bar
|