summaryrefslogtreecommitdiff
path: root/gold/symtab.h
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>2009-12-30 07:40:01 +0000
committerIan Lance Taylor <ian@airs.com>2009-12-30 07:40:01 +0000
commit8d6d383d7cb7438e29207f3bc7c87130c97411e6 (patch)
treedb0ef13cb316f1dd59420d2e4a058517cdb293a6 /gold/symtab.h
parente785ec03fb73baeb3699bb46901b2c04a415fd58 (diff)
downloadbinutils-gdb-8d6d383d7cb7438e29207f3bc7c87130c97411e6.tar.gz
PR 10450
* symtab.h (Symbol::needs_dynsym_entry): A symbol in both a regular and a dynamic object only needs a dynamic symbol table entry if it is externally visible.
Diffstat (limited to 'gold/symtab.h')
-rw-r--r--gold/symtab.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gold/symtab.h b/gold/symtab.h
index ed105c7a68a..cac7beed861 100644
--- a/gold/symtab.h
+++ b/gold/symtab.h
@@ -261,7 +261,9 @@ class Symbol
needs_dynsym_entry() const
{
return (this->needs_dynsym_entry_
- || (this->in_reg() && this->in_dyn()));
+ || (this->in_reg()
+ && this->in_dyn()
+ && this->is_externally_visible()));
}
// Mark this symbol as needing an entry in the dynamic symbol table.