aboutsummaryrefslogtreecommitdiff
path: root/modules/parsers/gas/tests/bin/gas-comment.asm
blob: 0c265f7dd4bb71ee6e0c277c747f7485daa010fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# This is a comment

/* So is this */

// and so is this

.byte 0		/* at end of line? */

.byte 0		/* at end of line,
multi-line? */

/* start of line? */ .byte 0

/* What about
a multi-line
comment? -- at start of line?
*/ .byte 0

.byte 0, /* in middle? */ 1

# Illegal; 1 seen on next line
#.byte 0, /* in middle,
#spanning lines? */ 1

/* EOF in comment?