binutils-gdb/gas/testsuite/gasp/crash1.asm

14 lines
87 B
NASM

.MACRO foo a b c=a
\a \b \c \d
.ENDM
foo 1 2
foo 1 2 3 4
foo 1
foo
.END