]> sourceware.org Git - newlib-cygwin.git/commitdiff
gas/testsuite/
authorNathan Sidwell <nathan@codesourcery.com>
Mon, 23 Apr 2007 07:51:30 +0000 (07:51 +0000)
committerNathan Sidwell <nathan@codesourcery.com>
Mon, 23 Apr 2007 07:51:30 +0000 (07:51 +0000)
* gas/m68k/br-isaa.s: New.
* gas/m68k/br-isaa.d: New.
* gas/m68k/br-isab.s: New.
* gas/m68k/br-isab.d: New.
* gas/m68k/br-isac.s: New.
* gas/m68k/br-isac.d: New.
* gas/m68k/all.exp: Adjust.

gas/
* config/tc-m68k.c (mcf54455_ctrl): New.
(HAVE_LONG_DISP, HAVE_LONG_CALL, HAVE_LONG_COND): New.
(m68k_archs): Add isac.
(m68k_cpus): Add 54455 family.
(m68k_ip): Split Bg into Bb, Bs, Bg.
(m68k_elf_final_processing): Add ISA_C.
* doc/c-m68k.texi (M680x0 Options): Add isac.

include/opcode/
* m68k.h (mcfisa_c): New.
(mcfusp, mcf_mask): Adjust.

bfd/
* archures.c (bfd_mach_mcf_isa_c, bfd_mach_mcf_isa_c_mac,
bfd_mach_mcf_isa_c_emac): New.
* elf32-m68k.c (ISAC_PLT_ENTRY_SIZE, elf_isac_plt0_entry,
elf_isac_plt_entry, elf_isac_plt_info): New.
(elf32_m68k_object_p): Add ISA_C.
(elf32_m68k_print_private_bfd_data): Print ISA_C.
(elf32_m68k_get_plt_info): Detect ISA_C.
* cpu-m68k.c (arch_info): Add ISAC.
(m68k_arch_features): Likewise,
(bfd_m68k_compatible): ISAs B & C are not compatible.

opcodes/
* m68k-opc.c: Mark mcfisa_c instructions.

include/opcode/ChangeLog
include/opcode/m68k.h

index 55999e4d7f40a55c8d1103a37a121c5df3364195..0c304a72fff738709fbca40f409cdce970b869bc 100644 (file)
@@ -1,3 +1,8 @@
+2007-04-23  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * m68k.h (mcfisa_c): New.
+       (mcfusp, mcf_mask): Adjust.
+
 2007-04-20  Alan Modra  <amodra@bigpond.net.au>
 
        * ppc.h (struct powerpc_operand): Replace "bits" with "bitm".
index f87a7a379caa891e09eaa4320b679edd23ea62eb..60bfb3a1b28a485f849aef4792c3e0c73837d2b7 100644 (file)
 
 #define mcfisa_a 0x4000                /* ColdFire ISA_A.  */
 #define mcfisa_aa 0x8000       /* ColdFire ISA_A+.  */
-#define mcfisa_b 0x10000               /* ColdFire ISA_B.  */
-#define mcfusp   0x20000       /* ColdFire USP instructions.  */
-#define mcf_mask 0x3e400
+#define mcfisa_b 0x10000       /* ColdFire ISA_B.  */
+#define mcfisa_c 0x20000       /* ColdFire ISA_C.  */
+#define mcfusp   0x40000       /* ColdFire USP instructions.  */
+#define mcf_mask 0x7e400
 
 /* Handy aliases.  */
 #define        m68040up   (m68040 | m68060)
This page took 0.03452 seconds and 5 git commands to generate.