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

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

Issue 11369048: Update Yasm to 1.2.0 (Yasm Part 2/3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/
Patch Set: Created 8 years, 1 month 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 .set bar,(foo-1)
1 .set foo,5 2 .set foo,5
2 .byte foo 3 .byte foo /* 0x5 */
4 .byte bar /* 0x4 */
5 .set foo,6
6 .byte foo /* 0x6 */
7 .byte bar /* 0x4 */
8 .set bar,10
9 .byte bar /* 0xa */
10 .set bar,foo+1
11 .byte bar /* 0x7 */
12 .set bar,bar+1
13 .byte bar /* 0x8 */
14 .set bar,5
15 .set bam,bar-1
16 .set bar,1
17 .byte bam /* 0x4 */
18 .set bar, boo + 1
19 .set boo, 5
20 .set boo, 6
21 .byte bar /* 0x6 */
22 .set a, b+c
23 .set b, 0x1
24 .set b, 0x2
25 .set c, 0x10
26 .set c, 0x20
27 .byte a /* 0x11 */
28 .set x, 5
29 .set y, x+z
30 .set x, 10
31 .set z, 1
32 .byte y /* 0x6 */
33 .set z, 0xfe
34 .byte z /* 0xfe */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698