diff options
author | Jan Beulich <jbeulich@novell.com> | 2018-10-10 08:41:52 +0200 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2018-10-10 08:41:52 +0200 |
commit | 673fe0f0a7a0624819f1b4cdc289f43691567e91 (patch) | |
tree | e322ba7542279099e15cdf44862fed1ae9ee4ebc /opcodes/i386-gen.c | |
parent | 43f6cd0588a735c202934789d67b6ed4302f255d (diff) | |
download | gdb-673fe0f0a7a0624819f1b4cdc289f43691567e91.zip gdb-673fe0f0a7a0624819f1b4cdc289f43691567e91.tar.gz gdb-673fe0f0a7a0624819f1b4cdc289f43691567e91.tar.bz2 |
x86: fold Size{16,32,64} template attributes
Only one of them can be set at a time, which means they can be expressed
by a single 2-bit field instead of three 1-bit ones.
Diffstat (limited to 'opcodes/i386-gen.c')
-rw-r--r-- | opcodes/i386-gen.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/opcodes/i386-gen.c b/opcodes/i386-gen.c index b958e8b..fdd6538 100644 --- a/opcodes/i386-gen.c +++ b/opcodes/i386-gen.c @@ -612,9 +612,7 @@ static bitfield opcode_modifiers[] = BITFIELD (JumpInterSegment), BITFIELD (FloatMF), BITFIELD (FloatR), - BITFIELD (Size16), - BITFIELD (Size32), - BITFIELD (Size64), + BITFIELD (Size), BITFIELD (CheckRegSize), BITFIELD (IgnoreSize), BITFIELD (DefaultSize), |