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, 0 insertions, 28 deletions
diff --git a/gas/testsuite/gasp/pl2.asm b/gas/testsuite/gasp/pl2.asm
deleted file mode 100644
index 2971137185b..00000000000
--- a/gas/testsuite/gasp/pl2.asm
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
- .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
-