aboutsummaryrefslogtreecommitdiff
path: root/opcodes/i386-gen.c
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@novell.com>2017-12-18 09:35:01 +0100
committerJan Beulich <jbeulich@suse.com>2017-12-18 09:35:01 +0100
commitca0d63fe0703ed36af1a7bda6097958805895b3a (patch)
treeb3f659fb2dbb588705e9505642c7fe1e83294997 /opcodes/i386-gen.c
parentdc821c5f9ae5208ad1ec438718f75e224f856deb (diff)
downloadgdb-ca0d63fe0703ed36af1a7bda6097958805895b3a.zip
gdb-ca0d63fe0703ed36af1a7bda6097958805895b3a.tar.gz
gdb-ca0d63fe0703ed36af1a7bda6097958805895b3a.tar.bz2
x86: drop FloatReg and FloatAcc
Express them as Reg|Tbyte and Acc|Tbyte respectively.
Diffstat (limited to 'opcodes/i386-gen.c')
-rw-r--r--opcodes/i386-gen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/i386-gen.c b/opcodes/i386-gen.c
index 92681e2..411cacb 100644
--- a/opcodes/i386-gen.c
+++ b/opcodes/i386-gen.c
@@ -341,6 +341,8 @@ static const initializer operand_type_shorthands[] =
{ "Reg16", "Reg|Word" },
{ "Reg32", "Reg|Dword" },
{ "Reg64", "Reg|Qword" },
+ { "FloatAcc", "Acc|Tbyte" },
+ { "FloatReg", "Reg|Tbyte" },
};
static initializer operand_type_init[] =
@@ -640,7 +642,6 @@ static bitfield opcode_modifiers[] =
static bitfield operand_types[] =
{
BITFIELD (Reg),
- BITFIELD (FloatReg),
BITFIELD (RegMMX),
BITFIELD (RegXMM),
BITFIELD (RegYMM),
@@ -667,7 +668,6 @@ static bitfield operand_types[] =
BITFIELD (SReg2),
BITFIELD (SReg3),
BITFIELD (Acc),
- BITFIELD (FloatAcc),
BITFIELD (JumpAbsolute),
BITFIELD (EsSeg),
BITFIELD (RegMem),