diff options
author | Richard Sandiford <rsandifo@nildram.co.uk> | 2006-07-26 11:56:21 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@nildram.co.uk> | 2006-07-26 11:56:21 +0000 |
commit | 31f5bde89e0f6bd45cf1628eab47d6143aa6cb2f (patch) | |
tree | 8ea809a5c95463b43e4e439bae246760ba576656 | |
parent | d61613ca084fa0721fab7e52a5b9da583fcbb8bb (diff) | |
download | gdb-31f5bde89e0f6bd45cf1628eab47d6143aa6cb2f.tar.gz |
opcodes/
* m68k-opc.c (m68k_opcodes): Fix operand specificer in the Coldfire
"fdaddl" entry.
gas/testsuite/
* gas/m68k/mcf-fpu.s: Add tests for all addressing modes.
* gas/m68k/mcf-fpu.d: Update accordingly.
-rw-r--r-- | ChangeLog.csl | 10 | ||||
-rw-r--r-- | opcodes/m68k-opc.c | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog.csl b/ChangeLog.csl index d5e5b3ffe19..60c171dd321 100644 --- a/ChangeLog.csl +++ b/ChangeLog.csl @@ -1,3 +1,13 @@ +2006-07-26 Richard Sandiford <richard@codesourcery.com> + + opcodes/ + * m68k-opc.c (m68k_opcodes): Fix operand specificer in the Coldfire + "fdaddl" entry. + + gas/testsuite/ + * gas/m68k/mcf-fpu.s: Add tests for all addressing modes. + * gas/m68k/mcf-fpu.d: Update accordingly. + 2006-07-20 Julian Brown <julian@codesourcery.com> Backport from mainline. diff --git a/opcodes/m68k-opc.c b/opcodes/m68k-opc.c index 867bbe16caa..601c55a15f6 100644 --- a/opcodes/m68k-opc.c +++ b/opcodes/m68k-opc.c @@ -461,7 +461,7 @@ const struct m68k_opcode m68k_opcodes[] = {"fdaddd", 4, two(0xF000, 0x0066), two(0xF1C0, 0xE07F), "IiF8F7", cfloat }, {"fdaddd", 4, two(0xF000, 0x5466), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, {"fdaddd", 4, two(0xF000, 0x5466), two(0xF1C0, 0xFC7F), "Ii;FF7", m68040up }, -{"fdaddl", 4, two(0xF000, 0x4066), two(0xF1C0, 0xFC7F), "IiwsF7", cfloat }, +{"fdaddl", 4, two(0xF000, 0x4066), two(0xF1C0, 0xFC7F), "IibsF7", cfloat }, {"fdaddl", 4, two(0xF000, 0x4066), two(0xF1C0, 0xFC7F), "Ii;lF7", m68040up }, {"fdaddp", 4, two(0xF000, 0x4C66), two(0xF1C0, 0xFC7F), "Ii;pF7", m68040up }, {"fdadds", 4, two(0xF000, 0x4466), two(0xF1C0, 0xFC7F), "Ii;fF7", m68040up }, |