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 8d5dade..a92223c 100644 --- a/opcodes/i386-opc.h +++ b/opcodes/i386-opc.h @@ -136,6 +136,8 @@ enum CpuLZCNT, /* INVPCID Instructions required */ CpuINVPCID, + /* VMFUNC Instruction required */ + CpuVMFUNC, /* 64bit support available, used by -march= in assembler. */ CpuLM, /* 64bit support required */ @@ -213,6 +215,7 @@ typedef union i386_cpu_flags unsigned int cpubmi2:1; unsigned int cpulzcnt:1; unsigned int cpuinvpcid:1; + unsigned int cpuvmfunc:1; unsigned int cpulm:1; unsigned int cpu64:1; unsigned int cpuno64:1; |