mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-05 12:53:16 +08:00
15 lines
164 B
ArmAsm
15 lines
164 B
ArmAsm
|
; Second file in assembly source debugging testcase.
|
||
|
|
||
|
.global foo2
|
||
|
foo2:
|
||
|
st r13,@-sp
|
||
|
|
||
|
; Call someplace else
|
||
|
|
||
|
bl foo3
|
||
|
|
||
|
; All done, return.
|
||
|
|
||
|
ld r13,@sp+
|
||
|
jmp r13
|