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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/yasm/patched-yasm/modules/parsers/gas/tests/bin/gas-set.asm
===================================================================
--- third_party/yasm/patched-yasm/modules/parsers/gas/tests/bin/gas-set.asm (revision 165590)
+++ third_party/yasm/patched-yasm/modules/parsers/gas/tests/bin/gas-set.asm (working copy)
@@ -1,2 +1,34 @@
+.set bar,(foo-1)
.set foo,5
-.byte foo
+.byte foo /* 0x5 */
+.byte bar /* 0x4 */
+.set foo,6
+.byte foo /* 0x6 */
+.byte bar /* 0x4 */
+.set bar,10
+.byte bar /* 0xa */
+.set bar,foo+1
+.byte bar /* 0x7 */
+.set bar,bar+1
+.byte bar /* 0x8 */
+.set bar,5
+.set bam,bar-1
+.set bar,1
+.byte bam /* 0x4 */
+.set bar, boo + 1
+.set boo, 5
+.set boo, 6
+.byte bar /* 0x6 */
+.set a, b+c
+.set b, 0x1
+.set b, 0x2
+.set c, 0x10
+.set c, 0x20
+.byte a /* 0x11 */
+.set x, 5
+.set y, x+z
+.set x, 10
+.set z, 1
+.byte y /* 0x6 */
+.set z, 0xfe
+.byte z /* 0xfe */

Powered by Google App Engine
This is Rietveld 408576698