aboutsummaryrefslogtreecommitdiff
path: root/bfd/elflink.c
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@libertysurf.fr>2005-07-16 15:08:14 +0000
committerEric Botcazou <ebotcazou@libertysurf.fr>2005-07-16 15:08:14 +0000
commitcc86ff917dedaa5e0c473e9298b7238c0221282f (patch)
treea4f9c307130316d7039439612bc103365cc9f204 /bfd/elflink.c
parent42fa7765a27b1d9691a1ca141408279bd9c3cd4e (diff)
downloadgdb-cc86ff917dedaa5e0c473e9298b7238c0221282f.zip
gdb-cc86ff917dedaa5e0c473e9298b7238c0221282f.tar.gz
gdb-cc86ff917dedaa5e0c473e9298b7238c0221282f.tar.bz2
PR ld/1021
PR ld/1031 * elflink.c (elf_link_add_object_symbols): Also append the version name to non-hidden absolute symbols that are functions.
Diffstat (limited to 'bfd/elflink.c')
-rw-r--r--bfd/elflink.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/bfd/elflink.c b/bfd/elflink.c
index 7307c15..d030b92 100644
--- a/bfd/elflink.c
+++ b/bfd/elflink.c
@@ -3687,11 +3687,12 @@ elf_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info)
/* If this is a hidden symbol, or if it is not version
1, we append the version name to the symbol name.
- However, we do not modify a non-hidden absolute
- symbol, because it might be the version symbol
- itself. FIXME: What if it isn't? */
+ However, we do not modify a non-hidden absolute symbol
+ if it is not a function, because it might be the version
+ symbol itself. FIXME: What if it isn't? */
if ((iver.vs_vers & VERSYM_HIDDEN) != 0
- || (vernum > 1 && ! bfd_is_abs_section (sec)))
+ || (vernum > 1 && (! bfd_is_abs_section (sec)
+ || ELF_ST_TYPE (isym->st_info) == STT_FUNC)))
{
const char *verstr;
size_t namelen, verlen, newlen;