X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=bfd%2Fcpu-v850.c;h=47da577189ffa3a120532f3efd11b52d70dca28e;hb=7eea15c514158ea3635780f29c03b021f3ee70af;hp=cda7517b252c0b75297559f667dfe11b7fa6a503;hpb=b90efa5b79ac1524ec260f8eb89d1be37e0219a7;p=deliverable%2Fbinutils-gdb.git diff --git a/bfd/cpu-v850.c b/bfd/cpu-v850.c index cda7517b25..47da577189 100644 --- a/bfd/cpu-v850.c +++ b/bfd/cpu-v850.c @@ -1,5 +1,5 @@ /* BFD support for the NEC V850 processor - Copyright (C) 1996-2015 Free Software Foundation, Inc. + Copyright (C) 1996-2020 Free Software Foundation, Inc. This file is part of BFD, the Binary File Descriptor library. @@ -24,23 +24,18 @@ #include "safe-ctype.h" #define N(number, print, default, next) \ -{ 32, 32, 8, bfd_arch_v850, number, "v850", print " (using old gcc ABI)", 2, default, \ - bfd_default_compatible, bfd_default_scan, bfd_arch_default_fill, next } + { 32, 32, 8, bfd_arch_v850, number, "v850", print ":old-gcc-abi", 2, default, \ + bfd_default_compatible, bfd_default_scan, bfd_arch_default_fill, next, 0 } -#define NEXT NULL - -static const bfd_arch_info_type arch_info_struct[] = +static const bfd_arch_info_type arch_info_struct[6] = { - N (bfd_mach_v850e3v5, "v850e3v5", FALSE, & arch_info_struct[1]), - N (bfd_mach_v850e3v5, "v850e2v4", FALSE, & arch_info_struct[2]), - N (bfd_mach_v850e2v3, "v850e2v3", FALSE, & arch_info_struct[3]), - N (bfd_mach_v850e2, "v850e2", FALSE, & arch_info_struct[4]), - N (bfd_mach_v850e1, "v850e1", FALSE, & arch_info_struct[5]), - N (bfd_mach_v850e, "v850e", FALSE, NULL) + N (bfd_mach_v850e3v5, "v850e3v5", FALSE, arch_info_struct + 1), + N (bfd_mach_v850e3v5, "v850e2v4", FALSE, arch_info_struct + 2), + N (bfd_mach_v850e2v3, "v850e2v3", FALSE, arch_info_struct + 3), + N (bfd_mach_v850e2, "v850e2", FALSE, arch_info_struct + 4), + N (bfd_mach_v850e1, "v850e1", FALSE, arch_info_struct + 5), + N (bfd_mach_v850e, "v850e", FALSE, NULL) }; -#undef NEXT -#define NEXT & arch_info_struct[0] - const bfd_arch_info_type bfd_v850_arch = - N (bfd_mach_v850, "v850", TRUE, NEXT); + N (bfd_mach_v850, "v850", TRUE, arch_info_struct + 0);