From 40b1c6c5d4ec74ccf53e7d192b555575093155cd Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Tue, 24 Apr 2007 13:05:46 +0000 Subject: [PATCH] Fix compile time warnings (at -O3 with gcc 4.1.2) --- bfd/ChangeLog | 5 +++++ bfd/coff-m68k.c | 3 ++- bfd/coffcode.h | 1 + 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 9fc72caca4f..9cfa98dd41a 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2007-04-24 Nick Clifton + + * 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 * elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Warn if diff --git a/bfd/coff-m68k.c b/bfd/coff-m68k.c index ae524e47e6a..3d162a0f068 100644 --- a/bfd/coff-m68k.c +++ b/bfd/coff-m68k.c @@ -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; diff --git a/bfd/coffcode.h b/bfd/coffcode.h index 98d1c0886bf..a2aac5f63b4 100644 --- a/bfd/coffcode.h +++ b/bfd/coffcode.h @@ -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 -- 2.30.2