Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Sandiford <rdsandiford@googlemail.com>2006-04-27 21:04:50 +0400
committerRichard Sandiford <rdsandiford@googlemail.com>2006-04-27 21:04:50 +0400
commit277b60831cefab63cfc5c5363e3d0a9a5ce4001a (patch)
tree0b3786a535ef624e992767a32c79f6232dec7ec9
parent7c61777233452aaa5cee8ffda603954163c44790 (diff)
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.
-rw-r--r--ChangeLog.csl15
-rw-r--r--include/opcode/m68k.h1
2 files changed, 16 insertions, 0 deletions
diff --git a/ChangeLog.csl b/ChangeLog.csl
index fb12d9136..ad80d950f 100644
--- a/ChangeLog.csl
+++ b/ChangeLog.csl
@@ -1,5 +1,20 @@
2006-04-27 Richard Sandiford <richard@codesourcery.com>
+ 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.
+
+2006-04-27 Richard Sandiford <richard@codesourcery.com>
+
bfd/
* elf32-m68k.c (elf_m68k_pcrel_insn): New structure.
(elf_m68k_plt_info): Likewise.
diff --git a/include/opcode/m68k.h b/include/opcode/m68k.h
index d137d9d62..65543e649 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)