mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-12 11:29:30 +00:00
12 lines
216 B
ArmAsm
12 lines
216 B
ArmAsm
.text
|
|
|
|
.type foo_resolver, @function
|
|
foo_resolver:
|
|
ret
|
|
.size foo_resolver, .-foo_resolver
|
|
|
|
# The ifunc `foo` is called by the ifunc-caller.
|
|
.globl foo
|
|
.type foo, %gnu_indirect_function
|
|
.set foo, foo_resolver
|