diff options
author | Alan Modra <amodra@gmail.com> | 2015-08-31 08:32:29 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2015-08-31 12:37:36 +0930 |
commit | 7292b3ac749b5d10e527f57f8caf27113b55e3cb (patch) | |
tree | c57fc7c98bff6aa7e30fea0f91d95245148ffafb /bfd/elf32-nios2.c | |
parent | 56e3225bfb25bfe5b58faab2242ffb919fb3e5d6 (diff) | |
download | fsf-binutils-gdb-7292b3ac749b5d10e527f57f8caf27113b55e3cb.zip fsf-binutils-gdb-7292b3ac749b5d10e527f57f8caf27113b55e3cb.tar.gz fsf-binutils-gdb-7292b3ac749b5d10e527f57f8caf27113b55e3cb.tar.bz2 |
Make asection->id and asection->index unsigned
These int vars are really unsigned, so make them so.
* section.c (struct bfd_section): Make "id" and "index" unsigned.
* coff-rs6000.c (_bfd_xcoff_sizeof_headers): Adjust local var to suit.
* elf.c (elf_map_symbols): Likewise.
* elf64-ppc.c (sym_exists_at): Make "id" param unsigned.
(struct ppc_link_hash_table): Make "top_id" and "top_index" unsigned.
(ppc64_elf_setup_section_lists): Ditto for local vars.
* elf32-arm.c: Similarly to elf64-ppc.c.
* elf32-avr.c: Likewise.
* elf32-hppa.c: Likewise.
* elf32-m68hc1x.c: Likewise.
* elf32-metag.c: Likewise.
* elf32-nios2.c: Likewise.
* elfnn-aarch64.c: Likewise.
* simple.c (struct saved_offsets): Make "section_count" unsigned.
* bfd-in2.h: Regenerate.
Diffstat (limited to 'bfd/elf32-nios2.c')
-rw-r--r-- | bfd/elf32-nios2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elf32-nios2.c b/bfd/elf32-nios2.c index 6a72f71..9189726 100644 --- a/bfd/elf32-nios2.c +++ b/bfd/elf32-nios2.c @@ -1815,7 +1815,7 @@ struct elf32_nios2_link_hash_table /* Assorted information used by nios2_elf32_size_stubs. */ unsigned int bfd_count; - int top_index; + unsigned int top_index; asection **input_list; Elf_Internal_Sym **all_local_syms; @@ -2245,7 +2245,7 @@ nios2_elf32_setup_section_lists (bfd *output_bfd, struct bfd_link_info *info) { bfd *input_bfd; unsigned int bfd_count; - int top_id, top_index; + unsigned int top_id, top_index; asection *section; asection **input_list, **list; bfd_size_type amt; |