summaryrefslogtreecommitdiff
path: root/gas/testsuite/gas/i386/disp32.s
blob: fa85ae530c0c96b420680b8ce81d15606d0981d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
	.text
	mov (%eax),%ebx
	mov 3(%eax),%ebx

	mov.d8 (%eax),%ebx
	mov.d8 3(%eax),%ebx
	mov.d8 0xfff(%eax),%ebx

	mov.d32 (%eax),%ebx
	mov.d32 3(%eax),%ebx

	vmovdqu64.d32 -0x40(%eax),%xmm3

	jmp foo
	jmp.d8 foo
	jmp.d32 foo
foo:

	.intel_syntax noprefix
	mov DWORD PTR [eax], ebx
	mov DWORD PTR [eax+3], ebx
	mov DWORD PTR [eax+0xfff], ebx

	mov.d8 DWORD PTR [eax], ebx
	mov.d8 DWORD PTR [eax+3], ebx

	mov.d32 DWORD PTR [eax], ebx
	mov.d32 DWORD PTR [eax+3], ebx

	vmovdqu64.d32 xmm3,XMMWORD PTR [eax-0x40]