diff options
author | Jan Beulich <jbeulich@suse.com> | 2019-07-01 08:38:50 +0200 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2019-07-01 08:38:50 +0200 |
commit | 9d3bf266fd601031d12584982ef43df22c95e933 (patch) | |
tree | 819ccc648355ca9ef44015b02e20a81be262cc87 /opcodes/i386-opc.h | |
parent | c3949f432f4f7e4a776bd15e10dad56593abeb47 (diff) | |
download | gdb-9d3bf266fd601031d12584982ef43df22c95e933.zip gdb-9d3bf266fd601031d12584982ef43df22c95e933.tar.gz gdb-9d3bf266fd601031d12584982ef43df22c95e933.tar.bz2 |
x86: drop Vec_Imm4
It is pretty wasteful to have a per-operand flag which is used in
exactly 4 cases. It can be relatively easily replaced, and by doing so
I've actually found some dead code to remove at the same time (there's
no case of ImmExt set at the same time as Vec_Imm4).
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 f89f38b..831ffbf 100644 --- a/opcodes/i386-opc.h +++ b/opcodes/i386-opc.h @@ -784,9 +784,6 @@ enum /* Any memory size. */ Anysize, - /* Vector 4 bit immediate. */ - Vec_Imm4, - /* Bound register. */ RegBND, @@ -846,7 +843,6 @@ typedef union i386_operand_type unsigned int zmmword:1; unsigned int unspecified:1; unsigned int anysize:1; - unsigned int vec_imm4:1; unsigned int regbnd:1; #ifdef OTUnused unsigned int unused:(OTNumOfBits - OTUnused); |