X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=bfd%2Fcpu-iamcu.c;h=6630a7a662f8371ef4eaed33fcaa63de23f17b50;hb=7cac64af7bc6a7f7a86f90a1465f7c3d2b6f07e8;hp=33d3dccd14e4ebdabb01ef00223d7dd2ac63344d;hpb=bf64a9511f73684c4880fd1818928fdfa1725c4f;p=deliverable%2Fbinutils-gdb.git diff --git a/bfd/cpu-iamcu.c b/bfd/cpu-iamcu.c index 33d3dccd14..6630a7a662 100644 --- a/bfd/cpu-iamcu.c +++ b/bfd/cpu-iamcu.c @@ -1,5 +1,5 @@ /* BFD support for the Intel MCU architecture. - Copyright (C) 2015 Free Software Foundation, Inc. + Copyright (C) 2015-2019 Free Software Foundation, Inc. This file is part of BFD, the Binary File Descriptor library. @@ -25,36 +25,14 @@ extern void * bfd_arch_i386_short_nop_fill (bfd_size_type, bfd_boolean, bfd_boolean); +#define N(number, name, print, next) \ + { 32, 32, 8, bfd_arch_iamcu, 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_iamcu_arch_intel_syntax = -{ - 32, /* 32 bits in a word */ - 32, /* 32 bits in an address */ - 8, /* 8 bits in a byte */ - bfd_arch_iamcu, - bfd_mach_i386_iamcu_intel_syntax, - "iamcu:intel", - "iamcu:intel", - 3, - TRUE, - bfd_default_compatible, - bfd_default_scan, - bfd_arch_i386_short_nop_fill, - 0 -}; + N (bfd_mach_i386_iamcu_intel_syntax, "iamcu:intel", "iamcu:intel", NULL); const bfd_arch_info_type bfd_iamcu_arch = -{ - 32, /* 32 bits in a word */ - 32, /* 32 bits in an address */ - 8, /* 8 bits in a byte */ - bfd_arch_iamcu, - bfd_mach_i386_iamcu, - "iamcu", - "iamcu", - 3, - TRUE, - bfd_default_compatible, - bfd_default_scan, - bfd_arch_i386_short_nop_fill, - &bfd_iamcu_arch_intel_syntax -}; + N (bfd_mach_i386_iamcu, "iamcu", "iamcu", &bfd_iamcu_arch_intel_syntax); +