diff options
author | Jan Beulich <jbeulich@suse.com> | 2019-11-14 08:46:19 +0100 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2019-11-14 08:46:19 +0100 |
commit | 601e8564220b94b991ce1729edfc04fd9da52906 (patch) | |
tree | c2d7bdef3ed24d92a9cd9ba157a58c8bec99d201 /opcodes/i386-gen.c | |
parent | db4e407b539180099a2aa395571bd417daa1daeb (diff) | |
download | gdb-601e8564220b94b991ce1729edfc04fd9da52906.zip gdb-601e8564220b94b991ce1729edfc04fd9da52906.tar.gz gdb-601e8564220b94b991ce1729edfc04fd9da52906.tar.bz2 |
x86: make AnySize an insn attribute
... instead of an operand one. Which operand it applies to can be
determined from other operand properties, but as it turns out the only
place it is actually used at doesn't even need further qualification.
Diffstat (limited to 'opcodes/i386-gen.c')
-rw-r--r-- | opcodes/i386-gen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/i386-gen.c b/opcodes/i386-gen.c index 2838fa4..469798c 100644 --- a/opcodes/i386-gen.c +++ b/opcodes/i386-gen.c @@ -626,6 +626,7 @@ static bitfield opcode_modifiers[] = BITFIELD (CheckRegSize), BITFIELD (IgnoreSize), BITFIELD (DefaultSize), + BITFIELD (Anysize), BITFIELD (No_bSuf), BITFIELD (No_wSuf), BITFIELD (No_lSuf), @@ -733,7 +734,6 @@ static bitfield operand_types[] = BITFIELD (Ymmword), BITFIELD (Zmmword), BITFIELD (Unspecified), - BITFIELD (Anysize), #ifdef OTUnused BITFIELD (OTUnused), #endif |