X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=bfd%2Fcpu-l1om.c;h=38505a34df1fa84b53407cde6e0832ef460e78bf;hb=75c6c844d9df37761e0e834df057b89e41816e55;hp=e32400eb978072bb085e9a51050131aa5d3c1ade;hpb=827041555ac443bd57340060f3e034fd7b199dd8;p=deliverable%2Fbinutils-gdb.git diff --git a/bfd/cpu-l1om.c b/bfd/cpu-l1om.c index e32400eb97..38505a34df 100644 --- a/bfd/cpu-l1om.c +++ b/bfd/cpu-l1om.c @@ -1,5 +1,5 @@ /* BFD support for the Intel L1OM architecture. - Copyright (C) 2009-2019 Free Software Foundation, Inc. + Copyright (C) 2009-2020 Free Software Foundation, Inc. This file is part of BFD, the Binary File Descriptor library. @@ -25,36 +25,13 @@ extern void * bfd_arch_i386_short_nop_fill (bfd_size_type, bfd_boolean, bfd_boolean); +#define N(number, name, print, next) \ + { 64, 64, 8, bfd_arch_l1om, number, name, print, 3, TRUE, \ + bfd_default_compatible, bfd_default_scan, \ + bfd_arch_i386_short_nop_fill, next, 0 } + static const bfd_arch_info_type bfd_l1om_arch_intel_syntax = -{ - 64, /* 64 bits in a word */ - 64, /* 64 bits in an address */ - 8, /* 8 bits in a byte */ - bfd_arch_l1om, - bfd_mach_l1om_intel_syntax, - "l1om:intel", - "l1om:intel", - 3, - TRUE, - bfd_default_compatible, - bfd_default_scan, - bfd_arch_i386_short_nop_fill, - 0 -}; + N (bfd_mach_l1om_intel_syntax, "l1om:intel", "l1om:intel", NULL); const bfd_arch_info_type bfd_l1om_arch = -{ - 64, /* 64 bits in a word */ - 64, /* 64 bits in an address */ - 8, /* 8 bits in a byte */ - bfd_arch_l1om, - bfd_mach_l1om, - "l1om", - "l1om", - 3, - TRUE, - bfd_default_compatible, - bfd_default_scan, - bfd_arch_i386_short_nop_fill, - &bfd_l1om_arch_intel_syntax -}; + N (bfd_mach_l1om, "l1om", "l1om", &bfd_l1om_arch_intel_syntax);