mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
10 lines
132 B
ArmAsm
10 lines
132 B
ArmAsm
|
.text
|
||
|
.weak func
|
||
|
.globl _start
|
||
|
_start:
|
||
|
cmp func@GOT(%eax), %eax
|
||
|
jmp *func@GOT(%eax)
|
||
|
call func@PLT
|
||
|
cmp $func, %eax
|
||
|
call func
|