1 .include "common.inc" 2 .include "arch.inc" 3 4 comment "Second file in assembly source debugging testcase." 5 6 .global foo2 7 gdbasm_declare foo2 8 comment "mark: foo2 start" 9 gdbasm_enter 10 11 comment "Call someplace else (several times)." 12 13 comment "mark: call foo3" 14 gdbasm_call foo3 15 gdbasm_call foo3 16 17 comment "All done, return." 18 19 comment "mark: foo2 leave" 20 gdbasm_leave 21 gdbasm_end foo2 22 .section .note.GNU-stack,"",@progbits 23