summaryrefslogtreecommitdiff
path: root/gas/testsuite/gasp/crash1.asm
diff options
context:
space:
mode:
Diffstat (limited to 'gas/testsuite/gasp/crash1.asm')
-rw-r--r--gas/testsuite/gasp/crash1.asm13
1 files changed, 13 insertions, 0 deletions
diff --git a/gas/testsuite/gasp/crash1.asm b/gas/testsuite/gasp/crash1.asm
new file mode 100644
index 0000000000..d2b6b3082e
--- /dev/null
+++ b/gas/testsuite/gasp/crash1.asm
@@ -0,0 +1,13 @@
+
+
+ .MACRO foo a b c=a
+ \a \b \c \d
+ .ENDM
+
+ foo 1 2
+ foo 1 2 3 4
+ foo 1
+ foo
+
+
+ .END