aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/elflink.c4
2 files changed, 5 insertions, 4 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 9eb4109..b3617b2 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2003-07-22 H.J. Lu <hongjiu.lu@intel.com>
+
+ * elflink.c (_bfd_elf_dynamic_symbol_p): Don't return TRUE for
+ weak symbols.
+
2003-07-22 Nick Clifton <nickc@redhat.com>
* coffcode.h (coff_slurp_symbol_table): Add C_TCSYM and C_ECOML to
diff --git a/bfd/elflink.c b/bfd/elflink.c
index 322bb3d..ea0b8d0 100644
--- a/bfd/elflink.c
+++ b/bfd/elflink.c
@@ -2519,10 +2519,6 @@ _bfd_elf_dynamic_symbol_p (h, info, ignore_protected)
break;
default:
- /* With STV_DEFAULT, weak symbols do not bind locally. */
- if (h->root.type == bfd_link_hash_undefweak
- || h->root.type == bfd_link_hash_defweak)
- return TRUE;
break;
}