mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-12 12:16:04 +08:00
18 lines
287 B
ArmAsm
18 lines
287 B
ArmAsm
|
.text
|
||
|
|
||
|
.globl lib_func1
|
||
|
.type lib_func1, %function
|
||
|
lib_func1:
|
||
|
mov ip, sp
|
||
|
stmdb sp!, {r11, ip, lr, pc}
|
||
|
bl app_func2(PLT)
|
||
|
ldmia sp, {r11, sp, lr}
|
||
|
bx lr
|
||
|
.size lib_func1, . - lib_func1
|
||
|
|
||
|
.globl lib_func2
|
||
|
.type lib_func2, %function
|
||
|
lib_func2:
|
||
|
bx lr
|
||
|
.size lib_func2, . - lib_func2
|