Add .d8 suffix support to x86 assembler
[binutils.git] / gas / testsuite / gas / i386 / disp32.s
blobc3bec3a8232163d54d3a24b2d0bf92f201538b45
1 .text
2 mov (%eax),%ebx
3 mov 3(%eax),%ebx
5 mov.d8 (%eax),%ebx
6 mov.d8 3(%eax),%ebx
7 mov.d8 0xfff(%eax),%ebx
9 mov.d32 (%eax),%ebx
10 mov.d32 3(%eax),%ebx
12 jmp foo
13 jmp.d8 foo
14 jmp.d32 foo
15 foo:
17 .intel_syntax noprefix
18 mov DWORD PTR [eax], ebx
19 mov DWORD PTR [eax+3], ebx
20 mov DWORD PTR [eax+0xfff], ebx
22 mov.d8 DWORD PTR [eax], ebx
23 mov.d8 DWORD PTR [eax+3], ebx
25 mov.d32 DWORD PTR [eax], ebx
26 mov.d32 DWORD PTR [eax+3], ebx