mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
16 lines
234 B
ArmAsm
16 lines
234 B
ArmAsm
|
.text
|
||
|
.type selector, %function
|
||
|
foo:
|
||
|
movl $0, %eax
|
||
|
ret
|
||
|
selector:
|
||
|
mov $foo, %eax
|
||
|
ret
|
||
|
.type selector, %gnu_indirect_function
|
||
|
.globl _start
|
||
|
_start:
|
||
|
mov $selector, %eax
|
||
|
call *%eax
|
||
|
ret
|
||
|
.section .note.GNU-stack,"",@progbits
|