Add .d8 suffix support to x86 assembler
[deliverable/binutils-gdb.git] / gas / testsuite / gas / i386 / disp32.s
1 .text
2 mov (%eax),%ebx
3 mov 3(%eax),%ebx
4
5 mov.d8 (%eax),%ebx
6 mov.d8 3(%eax),%ebx
7 mov.d8 0xfff(%eax),%ebx
8
9 mov.d32 (%eax),%ebx
10 mov.d32 3(%eax),%ebx
11
12 jmp foo
13 jmp.d8 foo
14 jmp.d32 foo
15 foo:
16
17 .intel_syntax noprefix
18 mov DWORD PTR [eax], ebx
19 mov DWORD PTR [eax+3], ebx
20 mov DWORD PTR [eax+0xfff], ebx
21
22 mov.d8 DWORD PTR [eax], ebx
23 mov.d8 DWORD PTR [eax+3], ebx
24
25 mov.d32 DWORD PTR [eax], ebx
26 mov.d32 DWORD PTR [eax+3], ebx
This page took 0.030321 seconds and 4 git commands to generate.