diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2009-02-23 20:41:46 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2009-02-23 20:41:46 +0000 |
commit | 4c664d7bf7005e368a8ee5183ee018924acf0f9b (patch) | |
tree | 5b377fb8113b8cfcf72182124ceb80c2b1418269 /opcodes/i386-opc.h | |
parent | 7bcbeb0f1cba175ad4b8b3990fd1a0e81a4dcefd (diff) | |
download | gdb-4c664d7bf7005e368a8ee5183ee018924acf0f9b.zip gdb-4c664d7bf7005e368a8ee5183ee018924acf0f9b.tar.gz gdb-4c664d7bf7005e368a8ee5183ee018924acf0f9b.tar.bz2 |
gas/
2009-02-23 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (vex_imm4): Removed.
(VEX_check_operands): Likewise.
(match_template): Updated.
opcodes/
2009-02-23 H.J. Lu <hongjiu.lu@intel.com>
* i386-gen.c (operand_type_init): Remove OPERAND_TYPE_VEX_IMM4.
(operand_types): Remove Vex_Imm4.
* i386-opc.h (Vex_Imm4): Removed.
(OTMax): Updated.
(i386_operand_type): Remove vex_imm4.
* i386-opc.tbl: Remove Vex_Imm4 comments.
* i386-init.h: Regenerated.
* i386-tbl.h: Likewise.
Diffstat (limited to 'opcodes/i386-opc.h')
-rw-r--r-- | opcodes/i386-opc.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/opcodes/i386-opc.h b/opcodes/i386-opc.h index 3cb66ff..a3ff4bf 100644 --- a/opcodes/i386-opc.h +++ b/opcodes/i386-opc.h @@ -447,11 +447,8 @@ typedef struct i386_opcode_modifier /* Any memory size. */ #define Anysize (Unspecified + 1) -/* VEX 4 bit immediate */ -#define Vex_Imm4 (Anysize + 1) - /* The last bitfield in i386_operand_type. */ -#define OTMax Vex_Imm4 +#define OTMax Anysize #define OTNumOfUints \ (OTMax / sizeof (unsigned int) / CHAR_BIT + 1) @@ -510,7 +507,6 @@ typedef union i386_operand_type unsigned int ymmword:1; unsigned int unspecified:1; unsigned int anysize:1; - unsigned int vex_imm4:1; #ifdef OTUnused unsigned int unused:(OTNumOfBits - OTUnused); #endif |