diff options
author | Alan Modra <amodra@bigpond.net.au> | 2001-09-04 01:58:07 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2001-09-04 01:58:07 +0000 |
commit | 759a437a4c497ae63d65e43469ed3c70a2da8c86 (patch) | |
tree | 8e417f4e971488049790fe771a6ef8de51b9b00a /opcodes/i386-dis.c | |
parent | 3685fa17a7b90903df036006618d84c78873899c (diff) | |
download | gdb-759a437a4c497ae63d65e43469ed3c70a2da8c86.tar.gz |
* i386-dis.c (grps): Don't print the implicit al/ax/eax register
for opcode 0xf6 or 0xf7 forms of mul, imul, div, idiv insns.
Diffstat (limited to 'opcodes/i386-dis.c')
-rw-r--r-- | opcodes/i386-dis.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c index 7d9c18c30c0..3eb40c6df7c 100644 --- a/opcodes/i386-dis.c +++ b/opcodes/i386-dis.c @@ -1297,10 +1297,10 @@ static const struct dis386 grps[][8] = { { "(bad)", Eb, XX, XX }, { "notA", Eb, XX, XX }, { "negA", Eb, XX, XX }, - { "mulB", AL, Eb, XX }, - { "imulB", AL, Eb, XX }, - { "divB", AL, Eb, XX }, - { "idivB", AL, Eb, XX } + { "mulA", Eb, XX, XX }, /* Don't print the implicit %al register, */ + { "imulA", Eb, XX, XX }, /* to distinguish these opcodes from other */ + { "divA", Eb, XX, XX }, /* mul/imul opcodes. Do the same for div */ + { "idivA", Eb, XX, XX } /* and idiv for consistency. */ }, /* GRP3S */ { @@ -1308,10 +1308,10 @@ static const struct dis386 grps[][8] = { { "(bad)", XX, XX, XX }, { "notQ", Ev, XX, XX }, { "negQ", Ev, XX, XX }, - { "mulS", eAX, Ev, XX }, - { "imulS", eAX, Ev, XX }, - { "divS", eAX, Ev, XX }, - { "idivS", eAX, Ev, XX }, + { "mulQ", Ev, XX, XX }, /* Don't print the implicit register. */ + { "imulQ", Ev, XX, XX }, + { "divQ", Ev, XX, XX }, + { "idivQ", Ev, XX, XX }, }, /* GRP4 */ { |