diff options
author | Alan Modra <amodra@gmail.com> | 2017-09-02 11:00:02 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2017-09-02 11:00:02 +0930 |
commit | 96d01d93c4025cddeff197c98c7947e2b8f427bd (patch) | |
tree | e6a5dd001dd23db17bf98a03759af3aefa6a7af7 /bfd/elflink.c | |
parent | 96fbe52eaafef0e7abffc3e4d25fd89ae8464c88 (diff) | |
download | gdb-96d01d93c4025cddeff197c98c7947e2b8f427bd.zip gdb-96d01d93c4025cddeff197c98c7947e2b8f427bd.tar.gz gdb-96d01d93c4025cddeff197c98c7947e2b8f427bd.tar.bz2 |
-Og warning fixes
Found when building with gcc 4.9.4 using -Og.
bfd/
* elf-eh-frame.c (offset_adjust): Avoid false positive gcc warning.
* elflink.c (bfd_elf_size_dynsym_hash_dynstr): Likewise.
* elfnn-aarch64.c (elfNN_aarch64_final_link_relocate): Likewise.
ld/
* emultempl/msp430.em (eval_upper_either_sections): Make base_sec_name
a const char*.
(eval_lower_either_sections): Likewise.
(msp430_elf_after_allocation): Likewise, and don't needlessly concat
and free. Warning fix.
Diffstat (limited to 'bfd/elflink.c')
-rw-r--r-- | bfd/elflink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elflink.c b/bfd/elflink.c index 6008915..58fb83b 100644 --- a/bfd/elflink.c +++ b/bfd/elflink.c @@ -6855,7 +6855,7 @@ bfd_elf_size_dynsym_hash_dynstr (bfd *output_bfd, struct bfd_link_info *info) { const struct elf_backend_data *bed; unsigned long section_sym_count; - bfd_size_type dynsymcount; + bfd_size_type dynsymcount = 0; if (!is_elf_hash_table (info->hash)) return TRUE; |