i386: Also check R12-R15 registers when optimizing testq to testb
[deliverable/binutils-gdb.git] / gas / testsuite / gas / i386 / svme.s
CommitLineData
30123838
JB
1 .text
2common:
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__
20att64:
144c41d9 21 do_args %rax, %ecx
144c41d9 22.endif
26186d74 23att32:
144c41d9 24 skinit %eax
26186d74 25 do_args %eax, %ecx
474da251
JB
26.ifndef __amd64__
27att16:
28 do_args %ax, %ecx
29.endif
30123838
JB
30
31.intel_syntax noprefix
32.ifdef __amd64__
33intel64:
144c41d9 34 do_args rax, ecx
144c41d9 35.endif
26186d74 36intel32:
144c41d9 37 skinit eax
26186d74 38 do_args eax, ecx
474da251
JB
39.ifndef __amd64__
40intel16:
41 do_args ax, ecx
42.endif
30123838
JB
43
44 .p2align 4,0
This page took 0.641175 seconds and 4 git commands to generate.