X-Git-Url: http://drtracing.org/?a=blobdiff_plain;ds=sidebyside;f=bfd%2Fcpu-score.c;h=58c8340021260eabe556c9f695856b61cfd6f1bf;hb=d2d1ea20aef6ed97232280b5e15a52b8d7dc7b7d;hp=f05afd07c7cbcdd994afb5dccde6ed4b1183aa84;hpb=6f2750feaf2827ef8a1a0a5b2f90c1e9a6cabbd1;p=deliverable%2Fbinutils-gdb.git diff --git a/bfd/cpu-score.c b/bfd/cpu-score.c index f05afd07c7..58c8340021 100644 --- a/bfd/cpu-score.c +++ b/bfd/cpu-score.c @@ -1,5 +1,5 @@ /* BFD support for the score processor - Copyright (C) 2006-2016 Free Software Foundation, Inc. + Copyright (C) 2006-2020 Free Software Foundation, Inc. Contributed by Brain.lin (brain.lin@sunplusct.com) Mei Ligang (ligang@sunnorth.com.cn) @@ -43,11 +43,11 @@ compatible (const bfd_arch_info_type * a, const bfd_arch_info_type * b) return a; } -#define N(addr_bits, machine, print, default, next) \ +#define N(machine, print, default, next) \ { \ - 32, /* 16 bits in a word. */ \ + 32, /* Bits in a word. */ \ 32, /* Bits in an address. */ \ - 8, /* 8 bits in a byte. */ \ + 8, /* Bits in a byte. */ \ bfd_arch_score, \ machine, /* Machine number. */ \ "score", /* Architecture name. */ \ @@ -57,13 +57,14 @@ compatible (const bfd_arch_info_type * a, const bfd_arch_info_type * b) compatible, \ bfd_default_scan, \ bfd_arch_default_fill, \ - next \ + next, \ + 0 /* Maximum offset of a reloc from the start of an insn. */ \ } static const bfd_arch_info_type arch_info_struct[] = { - N (16, bfd_mach_score3, "score3", FALSE, NULL), + N (bfd_mach_score3, "score3", FALSE, NULL), }; const bfd_arch_info_type bfd_score_arch = - N (16, bfd_mach_score7, "score7", TRUE, & arch_info_struct[0]); + N (bfd_mach_score7, "score7", TRUE, & arch_info_struct[0]);