From c9adbffeea78575099c20e1d558897975ebd359e Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Mon, 29 Aug 2005 16:42:15 +0000 Subject: [PATCH] (_bfd_mips_elf_relocate_section): Initialise 'value' to avoid compile time warning message. --- bfd/ChangeLog | 5 +++++ bfd/elfxx-mips.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 1ff2729..b991a83 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2005-08-29 Steven J. Hill + + * elfxx-mips.c (_bfd_mips_elf_relocate_section): Initialise + 'value' to avoid compile time warning message. + 2005-08-26 Christian Groessler * coff-z8k.c: (r_jr, r_disp7, r_callr): Fix src_mask and dst_mask diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index 389c2af..28ada82 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -6942,7 +6942,7 @@ _bfd_mips_elf_relocate_section (bfd *output_bfd, struct bfd_link_info *info, for (rel = relocs; rel < relend; ++rel) { const char *name; - bfd_vma value; + bfd_vma value = 0; reloc_howto_type *howto; bfd_boolean require_jalx; /* TRUE if the relocation is a RELA relocation, rather than a -- 2.7.4