* elf64-ppc.c (ppc64_elf_edit_opd): Avoid gcc warning.

This commit is contained in:
Alan Modra 2009-06-22 00:00:32 +00:00
parent 0e25c6124f
commit 983bddc852
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2009-06-22 Alan Modra <amodra@bigpond.net.au>
* elf64-ppc.c (ppc64_elf_edit_opd): Avoid gcc warning.
2009-06-19 H.J. Lu <hongjiu.lu@intel.com>
* elflink.c (elf_link_add_object_symbols): Avoid warning

View File

@ -6721,11 +6721,12 @@ ppc64_elf_edit_opd (bfd *obfd, struct bfd_link_info *info,
{
Elf_Internal_Rela *write_rel;
bfd_byte *rptr, *wptr;
bfd_byte *new_contents = NULL;
bfd_byte *new_contents;
bfd_boolean skip;
long opd_ent_size;
bfd_size_type amt;
new_contents = NULL;
amt = sec->size * sizeof (long) / 8;
opd = &ppc64_elf_section_data (sec)->u.opd;
opd->adjust = bfd_zalloc (obfd, amt);