diff options
author | Jan Beulich <jbeulich@novell.com> | 2017-11-30 11:47:38 +0100 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2017-11-30 11:47:38 +0100 |
commit | b5014f7af26ff0fbc1128b5fabdaf3bd5918dd94 (patch) | |
tree | 43ea6ce3f3d50e1326772b8709070f38bcd7a9eb /opcodes/i386-opc.h | |
parent | fd4e0347596acf79642625f4faad9e37c8fa0f0e (diff) | |
download | gdb-b5014f7af26ff0fbc1128b5fabdaf3bd5918dd94.zip gdb-b5014f7af26ff0fbc1128b5fabdaf3bd5918dd94.tar.gz gdb-b5014f7af26ff0fbc1128b5fabdaf3bd5918dd94.tar.bz2 |
x86: drop Vec_Disp8
This is fully redundant with Disp8MemShift being non-zero, and hence can
be folded with normal Disp8 handling.
Diffstat (limited to 'opcodes/i386-opc.h')
-rw-r--r-- | opcodes/i386-opc.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/opcodes/i386-opc.h b/opcodes/i386-opc.h index 5c29bdb..c76ebb7 100644 --- a/opcodes/i386-opc.h +++ b/opcodes/i386-opc.h @@ -797,9 +797,6 @@ enum /* Bound register. */ RegBND, - /* Vector 8bit displacement */ - Vec_Disp8, - /* The last bitfield in i386_operand_type. */ OTMax }; @@ -866,7 +863,6 @@ typedef union i386_operand_type unsigned int anysize:1; unsigned int vec_imm4:1; unsigned int regbnd:1; - unsigned int vec_disp8:1; #ifdef OTUnused unsigned int unused:(OTNumOfBits - OTUnused); #endif |