1	.macro	v1 arg1 : req, args : vararg
2	.long	foo\arg1
3	.ifnb	\args
4	v1	\args
5	.endif
6	.endm
7
8	v1	1
9	v1	2, 3
10	v1	4, 5, 6
11