PR ld/10515

* linker.c (bfd_find_version_for_sym): Revert warning.
This commit is contained in:
Alan Modra
2009-08-26 04:33:42 +00:00
parent bc3a0b4d79
commit 0666b2c367
2 changed files with 6 additions and 13 deletions

View File

@ -3277,7 +3277,6 @@ bfd_find_version_for_sym (struct bfd_elf_version_tree *verdefs,
struct bfd_elf_version_tree *t;
struct bfd_elf_version_tree *local_ver, *global_ver, *exist_ver;
struct bfd_elf_version_tree *star_local_ver, *star_global_ver;
unsigned int match_count = 0;
local_ver = NULL;
global_ver = NULL;
@ -3292,7 +3291,6 @@ bfd_find_version_for_sym (struct bfd_elf_version_tree *verdefs,
while ((d = (*t->match) (&t->globals, d, sym_name)) != NULL)
{
++match_count;
if (d->literal || strcmp (d->pattern, "*") != 0)
global_ver = t;
else
@ -3303,10 +3301,7 @@ bfd_find_version_for_sym (struct bfd_elf_version_tree *verdefs,
/* If the match is a wildcard pattern, keep looking for
a more explicit, perhaps even local, match. */
if (d->literal)
{
match_count = 0;
break;
}
break;
}
if (d != NULL)
@ -3319,7 +3314,6 @@ bfd_find_version_for_sym (struct bfd_elf_version_tree *verdefs,
while ((d = (*t->match) (&t->locals, d, sym_name)) != NULL)
{
++match_count;
if (d->literal || strcmp (d->pattern, "*") != 0)
local_ver = t;
else
@ -3331,7 +3325,6 @@ bfd_find_version_for_sym (struct bfd_elf_version_tree *verdefs,
/* An exact match overrides a global wildcard. */
global_ver = NULL;
star_global_ver = NULL;
match_count = 0;
break;
}
}
@ -3341,11 +3334,6 @@ bfd_find_version_for_sym (struct bfd_elf_version_tree *verdefs,
}
}
if (match_count > 1)
(*_bfd_error_handler)
(_("warning: multiple wildcard version script matches for %s\n"),
sym_name);
if (global_ver == NULL && local_ver == NULL)
global_ver = star_global_ver;