diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2006-05-25 08:09:03 +0000 |
---|---|---|
committer | Richard Sandiford <rdsandiford@googlemail.com> | 2006-05-25 08:09:03 +0000 |
commit | fed9f6504c275297ab1260f1b6f4f270366a2e1c (patch) | |
tree | 8f0a70eca2d671702768127c9add60666cce4192 /include | |
parent | 5544eee792837f56e476b8e8576c6df02d305450 (diff) | |
download | newlib-fed9f6504c275297ab1260f1b6f4f270366a2e1c.zip newlib-fed9f6504c275297ab1260f1b6f4f270366a2e1c.tar.gz newlib-fed9f6504c275297ab1260f1b6f4f270366a2e1c.tar.bz2 |
include/opcodes/
* m68k.h (mcf_mask): Define.
opcodes/
* m68k-opc.c (m68k_opcodes): Fix the masks of the Coldfire fmovemd
and fmovem entries. Put register list entries before immediate
mask entries. Use "l" rather than "L" in the fmovem entries.
* m68k-dis.c (match_insn_m68k): Remove the PRIV argument and work it
out from INFO.
(m68k_scan_mask): New function, split out from...
(print_insn_m68k): ...here. If no architecture has been set,
first try printing an m680x0 instruction, then try a Coldfire one.
gas/testsuite/
* gas/m68k/mcf-fpu.s: Add fmovemd and fmovem instructions.
* gas/m68k/mcf-fpu.d: Adjust accordingly.
Diffstat (limited to 'include')
-rw-r--r-- | include/opcode/ChangeLog | 4 | ||||
-rw-r--r-- | include/opcode/m68k.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index 4682f2d..6a6f34b 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,7 @@ +2006-05-25 Richard Sandiford <richard@codesourcery.com> + + * m68k.h (mcf_mask): Define. + 2006-05-05 Thiemo Seufer <ths@mips.com> David Ung <davidu@mips.com> diff --git a/include/opcode/m68k.h b/include/opcode/m68k.h index d137d9d..65543e6 100644 --- a/include/opcode/m68k.h +++ b/include/opcode/m68k.h @@ -42,6 +42,7 @@ #define mcfisa_aa 0x4000 /* ColdFire ISA_A+. */ #define mcfisa_b 0x8000 /* ColdFire ISA_B. */ #define mcfusp 0x10000 /* ColdFire USP instructions. */ +#define mcf_mask 0x1f200 /* Handy aliases. */ #define m68040up (m68040 | m68060) |