1	.macro	sym n:req
2	.if	\n
3	.globl	bar\@
4	.type	bar\@, @function
5bar\@ :
6	.insn
7	.hword	0
8	.size	bar\@, . - bar\@
9	sym	\n - 1
10	.endif
11	.endm
12
13	.text
14	.align	4
15	sym	8
16