diff options
Diffstat (limited to 'opcodes/i386-opc.h')
-rw-r--r-- | opcodes/i386-opc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/opcodes/i386-opc.h b/opcodes/i386-opc.h index 7b0e5b2..8806142 100644 --- a/opcodes/i386-opc.h +++ b/opcodes/i386-opc.h @@ -104,6 +104,8 @@ enum CpuAVX512PF, /* Intel AVX-512 VL Instructions support required. */ CpuAVX512VL, + /* Intel AVX-512 DQ Instructions support required. */ + CpuAVX512DQ, /* Intel AVX-512 BW Instructions support required. */ CpuAVX512BW, /* Intel L1OM support required */ @@ -241,6 +243,7 @@ typedef union i386_cpu_flags unsigned int cpuavx512er:1; unsigned int cpuavx512pf:1; unsigned int cpuavx512vl:1; + unsigned int cpuavx512dq:1; unsigned int cpuavx512bw:1; unsigned int cpul1om:1; unsigned int cpuk1om:1; |