1 .include "common.inc" 2 .include "arch.inc" 3 4comment "Second file in assembly source debugging testcase." 5 6 .global foo2 7gdbasm_declare foo2 8 gdbasm_enter 9 10comment "Call someplace else (several times)." 11 12 gdbasm_call foo3 13 gdbasm_call foo3 14 15comment "All done, return." 16 17 gdbasm_leave 18 gdbasm_end foo2 19