summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.asm/asmsrc1.s
blob: be1028064a995ed8306c682828eea94643e0de38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
	.include "common.inc"
	.include "arch.inc"

comment "main routine for assembly source debugging test"
comment "This particular testcase uses macros in <arch>.inc to achieve"
comment "machine independence.  This file must be compiled with -Darch=foo."

comment "WARNING: asm-source.exp checks for line numbers printed by gdb,"
comment "therefore be careful about changing this file without also changing"
comment "asm-source.exp."

	.global main
main:
	enter

comment "Call a macro that consists of several lines of assembler code."

	several_nops

comment "Call a subroutine in another file."

	call foo2

comment "All done."

	exit0

comment "A routine for foo2 to call."

	.global foo3
foo3:
	enter
	leave

	.global exit
exit:
	exit0