summaryrefslogtreecommitdiff
path: root/gas/testsuite/gasp/pl2.asm
diff options
context:
space:
mode:
Diffstat (limited to 'gas/testsuite/gasp/pl2.asm')
-rw-r--r--gas/testsuite/gasp/pl2.asm28
1 files changed, 28 insertions, 0 deletions
diff --git a/gas/testsuite/gasp/pl2.asm b/gas/testsuite/gasp/pl2.asm
new file mode 100644
index 00000000000..2971137185b
--- /dev/null
+++ b/gas/testsuite/gasp/pl2.asm
@@ -0,0 +1,28 @@
+
+
+ .ALTERNATE
+
+ ! ok
+ !! also ok
+
+foo MACRO
+ ! you can see me
+ !! but not me
+ ! you can see me
+ !! but not me
+ but this "SHOULD !!BE OK"
+ ENDM
+
+ foo
+
+
+define MACRO val1,val2
+ DB val1 ! this comment will show up
+ DB val2 !! this on won't
+ ENDM
+
+ define 0,1
+
+
+ END
+