diff options
author | Alan Modra <amodra@gmail.com> | 2020-12-18 09:38:00 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2020-12-18 10:34:16 +1030 |
commit | 3fafa2e26ed651e3d3a50193b5bbf8f55779c7aa (patch) | |
tree | cf500a8af62e6585b754b965a500d70ae8b8521e /bfd | |
parent | 7fbd5f4e2c143bbe28715608ca00e2e93a7d7fd4 (diff) | |
download | binutils-3fafa2e26ed651e3d3a50193b5bbf8f55779c7aa.zip binutils-3fafa2e26ed651e3d3a50193b5bbf8f55779c7aa.tar.gz binutils-3fafa2e26ed651e3d3a50193b5bbf8f55779c7aa.tar.bz2 |
Assorted tidies
bfd/
* 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.
include/
* xtensa-isa-internal.h (xtisa_errno, xtisa_error_msg): Delete.
Diffstat (limited to 'bfd')
-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 |
5 files changed, 11 insertions, 6 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 |