diff options
-rw-r--r-- | bfd/ChangeLog | 7 | ||||
-rw-r--r-- | bfd/elf32-microblaze.c | 2 | ||||
-rw-r--r-- | bfd/elf32-nds32.c | 2 | ||||
-rw-r--r-- | bfd/som.c | 2 | ||||
-rw-r--r-- | bfd/xtensa-isa.c | 4 | ||||
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/xtensa-isa-internal.h | 3 |
7 files changed, 15 insertions, 9 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 6b09a44..cb72b13 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,5 +1,12 @@ 2020-12-18 Alan Modra <amodra@gmail.com> + * elf32-microblaze.c (dbg): Delete unused variable. + * elf32-nds32.c (relax_group_section_id_list): Make static. + * som.c (reloc_queue): Make static. + * xtensa-isa.c (xtisa_errno, xtisa_error_msg): Make static. + +2020-12-18 Alan Modra <amodra@gmail.com> + * archive.c (_bfd_ar_spacepad, _bfd_ar_sizepad): Use auto buf. * coff-mcore.c (coff_mcore_relocate_section): Likewise. * elf32-ppc.c (ppc_elf_unhandled_reloc): Use asprintf in place diff --git a/bfd/elf32-microblaze.c b/bfd/elf32-microblaze.c index 1b5c2ef..f49fc8d 100644 --- a/bfd/elf32-microblaze.c +++ b/bfd/elf32-microblaze.c @@ -20,8 +20,6 @@ Boston, MA 02110-1301, USA. */ -int dbg = 0; - #include "sysdep.h" #include "bfd.h" #include "bfdlink.h" diff --git a/bfd/elf32-nds32.c b/bfd/elf32-nds32.c index 85bbd09..15c63e9 100644 --- a/bfd/elf32-nds32.c +++ b/bfd/elf32-nds32.c @@ -13336,7 +13336,7 @@ elf32_nds32_check_relax_group (bfd *abfd, asection *asec) } /* Reorder RELAX_GROUP ID when command line option '-r' is applied. */ -struct section_id_list_t *relax_group_section_id_list = NULL; +static struct section_id_list_t *relax_group_section_id_list = NULL; struct section_id_list_t * elf32_nds32_lookup_section_id (int id, struct section_id_list_t **lst_ptr) @@ -114,7 +114,7 @@ static unsigned int som_slurp_symbol_table (bfd *); Note one side effect of using a R_PREV_FIXUP is the relocation that is being repeated moves to the front of the queue. */ -struct reloc_queue +static struct reloc_queue { unsigned char *reloc; unsigned int size; diff --git a/bfd/xtensa-isa.c b/bfd/xtensa-isa.c index bbd9124..72aae0b 100644 --- a/bfd/xtensa-isa.c +++ b/bfd/xtensa-isa.c @@ -24,8 +24,8 @@ #include "xtensa-isa.h" #include "xtensa-isa-internal.h" -xtensa_isa_status xtisa_errno; -char xtisa_error_msg[1024]; +static xtensa_isa_status xtisa_errno; +static char xtisa_error_msg[1024]; xtensa_isa_status diff --git a/include/ChangeLog b/include/ChangeLog index 24f1688..933e7da 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,5 +1,9 @@ 2020-12-18 Alan Modra <amodra@gmail.com> + * xtensa-isa-internal.h (xtisa_errno, xtisa_error_msg): Delete. + +2020-12-18 Alan Modra <amodra@gmail.com> + * opcode/arc-attrs.h (CONFLICT_LIST): Make const. 2020-12-16 Alan Modra <amodra@gmail.com> diff --git a/include/xtensa-isa-internal.h b/include/xtensa-isa-internal.h index cf1e8a3..e7edab4 100644 --- a/include/xtensa-isa-internal.h +++ b/include/xtensa-isa-internal.h @@ -228,7 +228,4 @@ typedef struct xtensa_isa_internal_struct extern int xtensa_isa_name_compare (const void *, const void *); -extern xtensa_isa_status xtisa_errno; -extern char xtisa_error_msg[]; - #endif /* !XTENSA_ISA_INTERNAL_H */ |