aboutsummaryrefslogtreecommitdiff
path: root/bfd/elflink.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2005-07-26 15:19:37 +0000
committerAlan Modra <amodra@gmail.com>2005-07-26 15:19:37 +0000
commitf41d945baeff0467b6f35aba7a3d54ec916f90af (patch)
tree575f0cb273e225918f013775467219adcd7e9e4e /bfd/elflink.c
parent87538722bef4cace47cfb29d79ecab3a2de0a962 (diff)
downloadgdb-f41d945baeff0467b6f35aba7a3d54ec916f90af.zip
gdb-f41d945baeff0467b6f35aba7a3d54ec916f90af.tar.gz
gdb-f41d945baeff0467b6f35aba7a3d54ec916f90af.tar.bz2
* elflink.c (_bfd_elf_merge_symbol): Skip weak redefinition
regardless of strength of previous definition.
Diffstat (limited to 'bfd/elflink.c')
-rw-r--r--bfd/elflink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elflink.c b/bfd/elflink.c
index 102b895..98fee0c 100644
--- a/bfd/elflink.c
+++ b/bfd/elflink.c
@@ -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