Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: third_party/yasm/patched-yasm/modules/parsers/gas/tests/bin/gas-comment.asm

Issue 6170009: Update our yasm copy to yasm 1.1.0 (Part 1: yasm side)... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # This is a comment 1 # This is a comment
2 2
3 /* So is this */ 3 /* So is this */
4 4
5 // and so is this
6
5 .byte 0 /* at end of line? */ 7 .byte 0 /* at end of line? */
6 8
7 .byte 0 /* at end of line, 9 .byte 0 /* at end of line,
8 multi-line? */ 10 multi-line? */
9 11
10 /* start of line? */ .byte 0 12 /* start of line? */ .byte 0
11 13
12 /* What about 14 /* What about
13 a multi-line 15 a multi-line
14 comment? -- at start of line? 16 comment? -- at start of line?
15 */ .byte 0 17 */ .byte 0
16 18
17 .byte 0, /* in middle? */ 1 19 .byte 0, /* in middle? */ 1
18 20
19 # Illegal; 1 seen on next line 21 # Illegal; 1 seen on next line
20 #.byte 0, /* in middle, 22 #.byte 0, /* in middle,
21 #spanning lines? */ 1 23 #spanning lines? */ 1
22 24
23 /* EOF in comment? 25 /* EOF in comment?
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698