x86: Add NOTRACK prefix support
[deliverable/binutils-gdb.git] / gas / testsuite / gas / i386 / notrack.s
1 # Check 32bit NOTRACK prefix
2
3 .allow_index_reg
4 .text
5 _start:
6 notrack call *%eax
7 notrack call *%ax
8 notrack jmp *%eax
9 notrack jmp *%ax
10
11 bnd notrack call *%eax
12 bnd notrack call *%ax
13 bnd notrack jmp *%eax
14 bnd notrack jmp *%ax
15
16 .intel_syntax noprefix
17 notrack call eax
18 notrack call ax
19 notrack jmp eax
20 notrack jmp ax
21
22 bnd notrack call eax
23 bnd notrack call ax
24 bnd notrack jmp eax
25 bnd notrack jmp ax
26
27 .byte 0x3e
28 .byte 0xf2
29 .byte 0xff
30 .byte 0xd0
31
32 .byte 0x3e
33 .byte 0x66
34 .byte 0xff
35 .byte 0xd0
This page took 0.04266 seconds and 4 git commands to generate.