Fix compile time warnings (at -O3 with gcc 4.1.2)

This commit is contained in:
Nick Clifton 2007-04-24 13:05:46 +00:00
parent 1a0a850df6
commit 40b1c6c5d4
3 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2007-04-24 Nick Clifton <nickc@redhat.com>
* coffcode.h (coff_slurp_reloc_table): Initialise dst.r_offset.
* coff-m68k.c (m68kcoff_rtype_to_howto): Initialize relent.howto.
2007-04-24 Alan Modra <amodra@bigpond.net.au>
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Warn if

View File

@ -251,11 +251,12 @@ m68kcoff_rtype_to_howto (abfd, sec, rel, h, sym, addendp)
arelent relent;
reloc_howto_type *howto;
relent.howto = NULL;
RTYPE2HOWTO (&relent, rel);
howto = relent.howto;
if (howto->pc_relative)
if (howto != NULL && howto->pc_relative)
*addendp += sec->vma;
return howto;

View File

@ -4870,6 +4870,7 @@ coff_slurp_reloc_table (bfd * abfd, sec_ptr asect, asymbol ** symbols)
cache_ptr = reloc_cache + idx;
src = native_relocs + idx;
dst.r_offset = 0;
coff_swap_reloc_in (abfd, src, &dst);
#ifdef RELOC_PROCESSING