From: Richard Sandiford Date: Fri, 24 Oct 2003 15:18:29 +0000 (+0000) Subject: * elfxx-mips.c (mips_elf_create_got_section): Initialize global_gotno. X-Git-Tag: cagney_bigcore-20040122-branchpoint~1058 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e3d54347fecd99fe254b14a8613f2d2cdca1747e;p=platform%2Fupstream%2Fbinutils.git * elfxx-mips.c (mips_elf_create_got_section): Initialize global_gotno. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 2c7c4cc..df6cb77 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2003-10-14 Richard Sandiford + + * elfxx-mips.c (mips_elf_create_got_section): Initialize global_gotno. + 2003-10-24 H.J. Lu * elflink.h (NAME(bfd_elf,size_dynamic_sections)): Look up diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index 2bff5a0..6a6787f 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -2867,6 +2867,7 @@ mips_elf_create_got_section (abfd, info, maybe_exclude) if (g == NULL) return FALSE; g->global_gotsym = NULL; + g->global_gotno = 0; g->local_gotno = MIPS_RESERVED_GOTNO; g->assigned_gotno = MIPS_RESERVED_GOTNO; g->bfd2got = NULL;