summaryrefslogtreecommitdiff
path: root/opcodes/i386-opc.h
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2011-01-05 00:16:49 +0000
committerH.J. Lu <hjl.tools@gmail.com>2011-01-05 00:16:49 +0000
commit0dd74f848adf62f23f6c58a52fd2b205053b94d6 (patch)
tree60d06c12b6dbc3ffbd6953d7419e1ff2f31e3b84 /opcodes/i386-opc.h
parentbc43ca2904111b73783614aae6f36647f646be61 (diff)
downloadbinutils-redhat-0dd74f848adf62f23f6c58a52fd2b205053b94d6.tar.gz
Implement BMI instructions.
Diffstat (limited to 'opcodes/i386-opc.h')
-rw-r--r--opcodes/i386-opc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/opcodes/i386-opc.h b/opcodes/i386-opc.h
index fe4fe97b19..6696983e3d 100644
--- a/opcodes/i386-opc.h
+++ b/opcodes/i386-opc.h
@@ -110,6 +110,8 @@ enum
CpuXOP,
/* LWP support required */
CpuLWP,
+ /* BMI support required */
+ CpuBMI,
/* MOVBE Instruction support required */
CpuMovbe,
/* EPT Instructions required */
@@ -186,6 +188,7 @@ typedef union i386_cpu_flags
unsigned int cpufma4:1;
unsigned int cpuxop:1;
unsigned int cpulwp:1;
+ unsigned int cpubmi:1;
unsigned int cpumovbe:1;
unsigned int cpuept:1;
unsigned int cpurdtscp:1;