diff options
author | Jan Beulich <jbeulich@suse.com> | 2020-03-06 08:52:12 +0100 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2020-03-06 08:52:12 +0100 |
commit | 643bb87079dd96aed99ff1572375a88179afcd15 (patch) | |
tree | b374822f5d5bf82f49101fcaba93fa89c94e3357 /opcodes/i386-opc.h | |
parent | a23b33b3d131f240b2525d9a24831b33f2b43e26 (diff) | |
download | gdb-643bb87079dd96aed99ff1572375a88179afcd15.zip gdb-643bb87079dd96aed99ff1572375a88179afcd15.tar.gz gdb-643bb87079dd96aed99ff1572375a88179afcd15.tar.bz2 |
x86: drop Rex64 attribute
It is almost entirely redundant with Size64, and the sole case (CRC32)
where direct replacement isn't possible can easily be taken care of in
another way.
Diffstat (limited to 'opcodes/i386-opc.h')
-rw-r--r-- | opcodes/i386-opc.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/opcodes/i386-opc.h b/opcodes/i386-opc.h index a831146..480c979 100644 --- a/opcodes/i386-opc.h +++ b/opcodes/i386-opc.h @@ -496,8 +496,6 @@ enum ImmExt, /* instruction don't need Rex64 prefix. */ NoRex64, - /* instruction require Rex64 prefix. */ - Rex64, /* deprecated fp insn, gets a warning */ Ugh, /* insn has VEX prefix: @@ -689,7 +687,6 @@ typedef struct i386_opcode_modifier unsigned int isprefix:1; unsigned int immext:1; unsigned int norex64:1; - unsigned int rex64:1; unsigned int ugh:1; unsigned int vex:2; unsigned int vexvvvv:2; |