gas: Adjust x86 tests for PECOFF
[deliverable/binutils-gdb.git] / gas / testsuite / gas / i386 / svme.s
1 .text
2 common:
3 clgi
4 invlpga
5 skinit
6 stgi
7 vmload
8 vmmcall
9 vmrun
10 vmsave
11
12 .macro do_args arg1, arg2
13 invlpga \arg1, \arg2
14 vmload \arg1
15 vmrun \arg1
16 vmsave \arg1
17 .endm
18
19 .ifdef __amd64__
20 att64:
21 do_args %rax, %ecx
22 .endif
23 att32:
24 skinit %eax
25 do_args %eax, %ecx
26 .ifndef __amd64__
27 att16:
28 do_args %ax, %ecx
29 .endif
30
31 .intel_syntax noprefix
32 .ifdef __amd64__
33 intel64:
34 do_args rax, ecx
35 .endif
36 intel32:
37 skinit eax
38 do_args eax, ecx
39 .ifndef __amd64__
40 intel16:
41 do_args ax, ecx
42 .endif
43
44 .p2align 4,0
This page took 0.036846 seconds and 4 git commands to generate.