aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.asm/asmsrc1.s
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/testsuite/gdb.asm/asmsrc1.s')
-rw-r--r--gdb/testsuite/gdb.asm/asmsrc1.s5
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.asm/asmsrc1.s b/gdb/testsuite/gdb.asm/asmsrc1.s
index 6e06b84..c2c01f7 100644
--- a/gdb/testsuite/gdb.asm/asmsrc1.s
+++ b/gdb/testsuite/gdb.asm/asmsrc1.s
@@ -26,22 +26,27 @@
comment "Call a macro that consists of several lines of assembler code."
+ comment "mark: main start"
gdbasm_several_nops
comment "Call a subroutine in another file."
+ comment "mark: call foo2"
gdbasm_call foo2
comment "All done."
+ comment "mark: main exit"
gdbasm_exit0
gdbasm_end main
+ comment "mark: search"
comment "A routine for foo2 to call."
.global foo3
gdbasm_declare foo3
gdbasm_enter
+ comment "mark: foo3 start"
gdbasm_leave
gdbasm_end foo3