diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 1999-07-16 08:10:27 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 1999-07-16 08:10:27 +0000 |
commit | 318da145ed406877df06bea26279e67a38f41a31 (patch) | |
tree | ce8230b1cc33f75ec87a7b839e27995e9c36e147 | |
parent | d49560a9c3cf8dc43ab87573ae3e3931b55e2e76 (diff) | |
download | gdb-318da145ed406877df06bea26279e67a38f41a31.zip gdb-318da145ed406877df06bea26279e67a38f41a31.tar.gz gdb-318da145ed406877df06bea26279e67a38f41a31.tar.bz2 |
* elflink.h (elf_link_record_local_dynamic_symbol): Remove unused
variables `link' and `elfsec'.
(elf_bfd_final_link): Remove unused variable `os'.
-rw-r--r-- | bfd/ChangeLog | 6 | ||||
-rw-r--r-- | bfd/elflink.h | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index b8b44d1..a4314d8 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +1999-07-16 Andreas Schwab <schwab@suse.de> + + * elflink.h (elf_link_record_local_dynamic_symbol): Remove unused + variables `link' and `elfsec'. + (elf_bfd_final_link): Remove unused variable `os'. + Thu Jul 15 17:55:31 1999 Mark P. Mitchell <mark@codesourcery.com> * elf32-mips.c (_bfd_mips_elf_modify_segment_map): Don't require diff --git a/bfd/elflink.h b/bfd/elflink.h index bf73759..9c00d1d 100644 --- a/bfd/elflink.h +++ b/bfd/elflink.h @@ -2062,7 +2062,6 @@ elf_link_record_local_dynamic_symbol (info, input_bfd, input_indx) Elf_External_Sym esym; unsigned long dynstr_index; char *name; - int elfsec, link; /* See if the entry exists already. */ for (entry = elf_hash_table (info)->dynlocal; entry ; entry = entry->next) @@ -4189,7 +4188,7 @@ elf_bfd_final_link (abfd, info) struct elf_link_local_dynamic_entry *e; for (e = elf_hash_table (info)->dynlocal; e ; e = e->next) { - asection *s, *os; + asection *s; sym.st_size = e->isym.st_size; sym.st_other = e->isym.st_other; |