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