diff options
author | Jan Hubicka <jh@suse.cz> | 2001-01-13 09:05:55 +0000 |
---|---|---|
committer | Jan Hubicka <jh@suse.cz> | 2001-01-13 09:05:55 +0000 |
commit | af472b44d958b72c0c1eabf173d2dbb0c73df885 (patch) | |
tree | e9050d69c58570f500810daffc76050421160fb0 /opcodes/i386-dis.c | |
parent | 6f438645075d3df9a5c1e90fa56f0449787d593e (diff) | |
download | gdb-af472b44d958b72c0c1eabf173d2dbb0c73df885.tar.gz |
* i386.c (md_assemble): Check cpu_flags even for nullary instructions.
* i386.h (i386_optab): Fix pusha and ret templates.
* i386-dis.c (dis386_att, disx86_64_att): Fix ret, lret and iret
templates.
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 ca9c39d81f8..5667d77cdaa 100644 --- a/opcodes/i386-dis.c +++ b/opcodes/i386-dis.c @@ -661,8 +661,8 @@ static const struct dis386 dis386_att[] = { /* c0 */ { GRP2b }, { GRP2S }, - { "retP", Iw, XX, XX }, - { "retP", XX, XX, XX }, + { "retI", Iw, XX, XX }, + { "retI", XX, XX, XX }, { "lesS", Gv, Mp, XX }, { "ldsS", Gv, Mp, XX }, { "movA", Eb, Ib, XX }, @@ -670,12 +670,12 @@ static const struct dis386 dis386_att[] = { /* c8 */ { "enterI", Iw, Ib, XX }, { "leaveI", XX, XX, XX }, - { "lretI", Iw, XX, XX }, - { "lretI", XX, XX, XX }, + { "lretP", Iw, XX, XX }, + { "lretP", XX, XX, XX }, { "int3", XX, XX, XX }, { "int", Ib, XX, XX }, { "into", XX, XX, XX}, - { "iretI", XX, XX, XX }, + { "iretP", XX, XX, XX }, /* d0 */ { GRP2b_one }, { GRP2S_one }, @@ -1256,12 +1256,12 @@ static const struct dis386 disx86_64_att[] = { /* c8 */ { "enterI", Iw, Ib, XX }, { "leaveI", XX, XX, XX }, - { "lretI", Iw, XX, XX }, - { "lretI", XX, XX, XX }, + { "lretP", Iw, XX, XX }, + { "lretP", XX, XX, XX }, { "int3", XX, XX, XX }, { "int", Ib, XX, XX }, { "(bad)", XX, XX, XX }, /* reserved. */ - { "iretI", XX, XX, XX }, + { "iretP", XX, XX, XX }, /* d0 */ { GRP2b_one }, { GRP2S_one }, |