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

Side by Side Diff: third_party/yasm/patched-yasm/modules/arch/x86/tests/gas64/gas-movsxs.asm

Issue 11365061: Update Yasm to 1.2.0 (Yasm Part 3/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 movsbl %al, %eax 1 movsbl %al, %eax
2 movsbw %al, %ax 2 movsbw %al, %ax
3 movswl %ax, %eax 3 movswl %ax, %eax
4 movsbq %al, %rax 4 movsbq %al, %rax
5 movswq %ax, %rax 5 movswq %ax, %rax
6 movslq %eax, %rax 6 movslq %eax, %rax
7 # Intel formats - untested for now 7 # Intel formats - untested for now
8 #movsxw %ax, %eax 8 #movsxw %ax, %eax
9 #movsxb %al, %ax 9 #movsxb %al, %ax
10 #movsxb %al, %rax 10 #movsxb %al, %rax
11 #movsxw %ax, %rax 11 #movsxw %ax, %rax
12 #movsxl %eax, %rax 12 #movsxl %eax, %rax
13 13
14 movzbl %al, %eax 14 movzbl %al, %eax
15 movzbw %al, %ax 15 movzbw %al, %ax
16 movzwl %ax, %eax 16 movzwl %ax, %eax
17 movzbq %al, %rax 17 movzbq %al, %rax
18 movzwq %ax, %rax 18 movzwq %ax, %rax
19
20 movsbw 5,%ax
21 movsbl 5,%eax
22 movswl 5,%eax
23 movsbq 5,%rax
24 movswq 5,%rax
25 movsx 5,%eax
26 movzbw 5,%ax
27 movzbl 5,%eax
28 movzwl 5,%eax
29 movzbq 5,%rax
30 movzwq 5,%rax
31 movzx 5,%eax
32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698