* elfxx-mips.c (mips_elf_merge_gots): Weaken assert for local
authorDaniel Jacobowitz <drow@false.org>
Fri, 14 Nov 2003 16:05:13 +0000 (16:05 +0000)
committerDaniel Jacobowitz <drow@false.org>
Fri, 14 Nov 2003 16:05:13 +0000 (16:05 +0000)
GOT entries.

bfd/ChangeLog
bfd/elfxx-mips.c

index f3afdca..63fd6fc 100644 (file)
@@ -1,3 +1,8 @@
+2003-11-14  Daniel Jacobowitz  <drow@mvista.com>
+
+       * elfxx-mips.c (mips_elf_merge_gots): Weaken assert for local
+       GOT entries.
+
 2003-11-13  Martin Schwidefsky  <schwidefsky@de.ibm.com>
 
        * elf32-s390.c (elf_s390_relocate_section): Only convert R_390_32
index b545683..b7224a5 100644 (file)
@@ -2263,7 +2263,7 @@ mips_elf_merge_gots (bfd2got_, p)
         got entries, since they're all in the master got_entries hash
         table anyway.  */
 
-      BFD_ASSERT (old_lcount + lcount == arg->primary->local_gotno);
+      BFD_ASSERT (old_lcount + lcount >= arg->primary->local_gotno);
       BFD_ASSERT (old_gcount + gcount >= arg->primary->global_gotno);
 
       arg->primary_count = arg->primary->local_gotno
@@ -2287,7 +2287,7 @@ mips_elf_merge_gots (bfd2got_, p)
 
       htab_delete (g->got_entries);
 
-      BFD_ASSERT (old_lcount + lcount == arg->current->local_gotno);
+      BFD_ASSERT (old_lcount + lcount >= arg->current->local_gotno);
       BFD_ASSERT (old_gcount + gcount >= arg->current->global_gotno);
 
       arg->current_count = arg->current->local_gotno