X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=bfd%2Fcpu-m10300.c;h=2681b71edd9f3220fa57e2115032c5580c4ae814;hb=27e4fac77ea57b288ac1e08d936d9a8fdc01a1ee;hp=6fd8c67da84b9c5d6c05be8bb74e3deb462b3c2f;hpb=b7761f11062dc4d4fd554342ac2d2fb235b65b7a;p=deliverable%2Fbinutils-gdb.git diff --git a/bfd/cpu-m10300.c b/bfd/cpu-m10300.c index 6fd8c67da8..2681b71edd 100644 --- a/bfd/cpu-m10300.c +++ b/bfd/cpu-m10300.c @@ -1,6 +1,5 @@ /* BFD support for the Matsushita 10300 processor - Copyright 1996, 1997, 1999, 2000, 2002, 2003, 2005, 2007 - Free Software Foundation, Inc. + Copyright (C) 1996-2019 Free Software Foundation, Inc. This file is part of BFD, the Binary File Descriptor library. @@ -23,53 +22,29 @@ #include "bfd.h" #include "libbfd.h" +#define N(NUMBER, NAME, PRINT, DEFAULT, NEXT) \ + { \ + 32, /* Bits in a word. */ \ + 32, /* Bits in an address. */ \ + 8, /* Bits in a byte. */ \ + bfd_arch_mn10300, \ + NUMBER, \ + NAME, \ + PRINT, \ + 2, /* Section alignment power. */ \ + DEFAULT, \ + bfd_default_compatible, \ + bfd_default_scan, \ + bfd_arch_default_fill, \ + NEXT, \ + 0 /* Maximum offset of a reloc from the start of an insn. */ \ + } + const bfd_arch_info_type bfd_am33_2_arch = - { - 32, /* 32 bits in a word */ - 32, /* 32 bits in an address */ - 8, /* 8 bits in a byte */ - bfd_arch_mn10300, - 332, - "am33_2", - "am33-2", - 2, - FALSE, - bfd_default_compatible, - bfd_default_scan, - bfd_arch_default_fill, - 0, - }; + N (bfd_mach_am33_2, "am33_2", "am33-2", FALSE, NULL); const bfd_arch_info_type bfd_am33_arch = - { - 32, /* 32 bits in a word */ - 32, /* 32 bits in an address */ - 8, /* 8 bits in a byte */ - bfd_arch_mn10300, - 330, - "am33", - "am33", - 2, - FALSE, - bfd_default_compatible, - bfd_default_scan, - bfd_arch_default_fill, - &bfd_am33_2_arch, - }; + N (bfd_mach_am33, "am33", "am33", FALSE, &bfd_am33_2_arch); const bfd_arch_info_type bfd_mn10300_arch = - { - 32, /* 32 bits in a word */ - 32, /* 32 bits in an address */ - 8, /* 8 bits in a byte */ - bfd_arch_mn10300, - 300, - "mn10300", - "mn10300", - 2, - TRUE, /* the one and only */ - bfd_default_compatible, - bfd_default_scan, - bfd_arch_default_fill, - &bfd_am33_arch, - }; + N (bfd_mach_mn10300, "mn10300", "mn10300", TRUE, &bfd_am33_arch);