diff options
author | Jan Beulich <jbeulich@suse.com> | 2020-02-11 11:20:55 +0100 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2020-02-11 11:20:55 +0100 |
commit | 50128d0cab8445e97ee89f55082dadb69d2bfbc8 (patch) | |
tree | 8e2994daf381e9d793796be2fcfd7ef957db1067 /opcodes/i386-opc.h | |
parent | 1e05b5c489289e60aac4e5cb73dd4b73ddfaaa32 (diff) | |
download | gdb-50128d0cab8445e97ee89f55082dadb69d2bfbc8.zip gdb-50128d0cab8445e97ee89f55082dadb69d2bfbc8.tar.gz gdb-50128d0cab8445e97ee89f55082dadb69d2bfbc8.tar.bz2 |
x86: drop ShortForm attribute
It is very simple to derive from other template properties, and hence
there's little point wasting storage for it.
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 ecd441e..ccf5d91 100644 --- a/opcodes/i386-opc.h +++ b/opcodes/i386-opc.h @@ -401,8 +401,6 @@ enum Load, /* insn has a modrm byte. */ Modrm, - /* register is in low 3 bits of opcode */ - ShortForm, /* special case for jump insns; value has to be 1 */ #define JUMP 1 /* call and jump */ @@ -658,7 +656,6 @@ typedef struct i386_opcode_modifier unsigned int w:1; unsigned int load:1; unsigned int modrm:1; - unsigned int shortform:1; unsigned int jump:3; unsigned int floatmf:1; unsigned int floatr:1; |