diff options
author | Alan Modra <amodra@gmail.com> | 2013-05-22 08:39:52 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2013-05-22 08:39:52 +0000 |
commit | ad3d91277b03836774688242a5e5cca6b6db6a4f (patch) | |
tree | 36a5f2f85026c8c04bf2c7a37d74b6a5771b604a /bfd | |
parent | 5b3905f13af1f55f88b9aa056323ed2f866d4c12 (diff) | |
download | gdb-ad3d91277b03836774688242a5e5cca6b6db6a4f.zip gdb-ad3d91277b03836774688242a5e5cca6b6db6a4f.tar.gz gdb-ad3d91277b03836774688242a5e5cca6b6db6a4f.tar.bz2 |
PR binutils/15462
* elfxx-mips.c (_bfd_mips_elf_relocate_section): Warning fix.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elfxx-mips.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 5055dc4..e4c87be 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2013-05-22 Eric Herman <eric@freesa.org> + + PR binutils/15462 + * elfxx-mips.c (_bfd_mips_elf_relocate_section): Warning fix. + 2013-05-22 Ralf Dreesen <gamma@dreesen.net> PR binutils/15474 diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index fa807713..a3b50f3 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -9354,7 +9354,7 @@ _bfd_mips_elf_relocate_section (bfd *output_bfd, struct bfd_link_info *info, const char *name; bfd_vma value = 0; reloc_howto_type *howto; - bfd_boolean cross_mode_jump_p; + bfd_boolean cross_mode_jump_p = FALSE; /* TRUE if the relocation is a RELA relocation, rather than a REL relocation. */ bfd_boolean rela_relocation_p = TRUE; |