OSDN Git Service

* elflink.c (_bfd_elf_merge_symbol): Skip weak redefinition
authoramodra <amodra>
Tue, 26 Jul 2005 15:19:34 +0000 (15:19 +0000)
committeramodra <amodra>
Tue, 26 Jul 2005 15:19:34 +0000 (15:19 +0000)
regardless of strength of previous definition.

bfd/ChangeLog
bfd/elflink.c

index 062d9e4..ff5c1bc 100644 (file)
@@ -1,3 +1,8 @@
+2005-07-27  Alan Modra  <amodra@bigpond.net.au>
+
+       * elflink.c (_bfd_elf_merge_symbol): Skip weak redefinition
+       regardless of strength of previous definition.
+
 2005-07-26  Alan Modra  <amodra@bigpond.net.au>
 
        * elflink.c (elf_gc_mark_dynamic_ref_symbol): Handle -shared.
index 102b895..98fee0c 100644 (file)
@@ -1216,7 +1216,7 @@ _bfd_elf_merge_symbol (bfd *abfd,
     }
 
   /* Skip weak definitions of symbols that are already defined.  */
-  if (newdef && olddef && newweak && !oldweak)
+  if (newdef && olddef && newweak)
     *skip = TRUE;
 
   /* If the old symbol is from a dynamic object, and the new symbol is