Remove ref_dynamic_nonweak added by accident
bfd/ 2012-11-20 H.J. Lu <hongjiu.lu@intel.com> PR ld/14862 * elf-bfd.h (elf_link_hash_entry): Remove ref_dynamic_nonweak added by accident. (elf_link_add_object_symbols): Don't set nor check ref_dynamic_nonweak. ld/testsuite/ 2012-11-20 H.J. Lu <hongjiu.lu@intel.com> PR ld/14862 * ld-elf/shared.exp (build_tests): Build libpr14862-1.o and libpr14862.so. (run_tests): Test pr14862. * ld-elf/pr14862-1.c: New file. * ld-elf/pr14862-2.c: Likewise. * ld-elf/pr14862.map: Likewise. * ld-elf/pr14862.out: Likewise.
This commit is contained in:
parent
b039ef0457
commit
dda8ddc56f
9 changed files with 52 additions and 9 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
2012-11-20 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
PR ld/14862
|
||||||
|
* elf-bfd.h (elf_link_hash_entry): Remove ref_dynamic_nonweak
|
||||||
|
added by accident.
|
||||||
|
(elf_link_add_object_symbols): Don't set nor check
|
||||||
|
ref_dynamic_nonweak.
|
||||||
|
|
||||||
2012-11-20 Alan Modra <amodra@gmail.com>
|
2012-11-20 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
* elf32-rx.c (rx_elf_print_private_bfd_data): Warning fix.
|
* elf32-rx.c (rx_elf_print_private_bfd_data): Warning fix.
|
||||||
|
|
|
@ -168,8 +168,6 @@ struct elf_link_hash_entry
|
||||||
/* Symbol has a non-weak reference from a non-shared object (other than
|
/* Symbol has a non-weak reference from a non-shared object (other than
|
||||||
the object in which it is defined). */
|
the object in which it is defined). */
|
||||||
unsigned int ref_regular_nonweak : 1;
|
unsigned int ref_regular_nonweak : 1;
|
||||||
/* Symbol has a non-weak reference from a shared object. */
|
|
||||||
unsigned int ref_dynamic_nonweak : 1;
|
|
||||||
/* Dynamic symbol has been adjustd. */
|
/* Dynamic symbol has been adjustd. */
|
||||||
unsigned int dynamic_adjusted : 1;
|
unsigned int dynamic_adjusted : 1;
|
||||||
/* Symbol needs a copy reloc. */
|
/* Symbol needs a copy reloc. */
|
||||||
|
|
|
@ -4394,8 +4394,6 @@ error_free_dyn:
|
||||||
{
|
{
|
||||||
h->def_dynamic = 0;
|
h->def_dynamic = 0;
|
||||||
h->ref_dynamic = 1;
|
h->ref_dynamic = 1;
|
||||||
/* PR 12549: Note if the dynamic reference is weak. */
|
|
||||||
h->ref_dynamic_nonweak = (bind != STB_WEAK);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4413,9 +4411,6 @@ error_free_dyn:
|
||||||
{
|
{
|
||||||
h->ref_dynamic = 1;
|
h->ref_dynamic = 1;
|
||||||
hi->ref_dynamic = 1;
|
hi->ref_dynamic = 1;
|
||||||
/* PR 12549: Note if the dynamic reference is weak. */
|
|
||||||
hi->ref_dynamic_nonweak =
|
|
||||||
h->ref_dynamic_nonweak = (bind != STB_WEAK);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -4503,8 +4498,8 @@ error_free_dyn:
|
||||||
if (!add_needed
|
if (!add_needed
|
||||||
&& definition
|
&& definition
|
||||||
&& ((dynsym
|
&& ((dynsym
|
||||||
&& h->ref_regular_nonweak)
|
&& h->ref_regular)
|
||||||
|| (h->ref_dynamic_nonweak
|
|| (h->ref_dynamic
|
||||||
&& (elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0
|
&& (elf_dyn_lib_class (abfd) & DYN_AS_NEEDED) != 0
|
||||||
&& !on_needed_list (elf_dt_name (abfd), htab->needed))))
|
&& !on_needed_list (elf_dt_name (abfd), htab->needed))))
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,3 +1,15 @@
|
||||||
|
2012-11-20 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
PR ld/14862
|
||||||
|
* ld-elf/shared.exp (build_tests): Build libpr14862-1.o and
|
||||||
|
libpr14862.so.
|
||||||
|
(run_tests): Test pr14862.
|
||||||
|
|
||||||
|
* ld-elf/pr14862-1.c: New file.
|
||||||
|
* ld-elf/pr14862-2.c: Likewise.
|
||||||
|
* ld-elf/pr14862.map: Likewise.
|
||||||
|
* ld-elf/pr14862.out: Likewise.
|
||||||
|
|
||||||
2012-11-20 H.J. Lu <hongjiu.lu@intel.com>
|
2012-11-20 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* ld-elf/global1.d: New file.
|
* ld-elf/global1.d: New file.
|
||||||
|
|
9
ld/testsuite/ld-elf/pr14862-1.c
Normal file
9
ld/testsuite/ld-elf/pr14862-1.c
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
extern void bar () __attribute__((weak));
|
||||||
|
|
||||||
|
int
|
||||||
|
main (void)
|
||||||
|
{
|
||||||
|
if (bar)
|
||||||
|
bar ();
|
||||||
|
return 0;
|
||||||
|
}
|
7
ld/testsuite/ld-elf/pr14862-2.c
Normal file
7
ld/testsuite/ld-elf/pr14862-2.c
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
void
|
||||||
|
bar (void)
|
||||||
|
{
|
||||||
|
printf ("OK\n");
|
||||||
|
}
|
4
ld/testsuite/ld-elf/pr14862.map
Normal file
4
ld/testsuite/ld-elf/pr14862.map
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
VERS_1 {
|
||||||
|
global: bar;
|
||||||
|
local: *;
|
||||||
|
};
|
1
ld/testsuite/ld-elf/pr14862.out
Normal file
1
ld/testsuite/ld-elf/pr14862.out
Normal file
|
@ -0,0 +1 @@
|
||||||
|
OK
|
|
@ -173,6 +173,12 @@ set build_tests {
|
||||||
{"Build libpr14323-2.so"
|
{"Build libpr14323-2.so"
|
||||||
"-shared" "-fPIC"
|
"-shared" "-fPIC"
|
||||||
{pr14323-2.c} {} "libpr14323-2.so"}
|
{pr14323-2.c} {} "libpr14323-2.so"}
|
||||||
|
{"Build pr14862-1.o"
|
||||||
|
"-r -nostdlib" ""
|
||||||
|
{pr14862-1.c} {} "libpr14862-1.o"}
|
||||||
|
{"Build libpr14862.so"
|
||||||
|
"-shared -Wl,--version-script=pr11138-1.map" "-fPIC"
|
||||||
|
{pr14862-2.c} {} "libpr14862.so"}
|
||||||
}
|
}
|
||||||
|
|
||||||
run_cc_link_tests $build_tests
|
run_cc_link_tests $build_tests
|
||||||
|
@ -308,6 +314,9 @@ set run_tests {
|
||||||
{"Run with pr14323-1.c pr14323-2.so"
|
{"Run with pr14323-1.c pr14323-2.so"
|
||||||
"tmpdir/libpr14323-2.so" ""
|
"tmpdir/libpr14323-2.so" ""
|
||||||
{pr14323-1.c} "pr14323" "pass.out"}
|
{pr14323-1.c} "pr14323" "pass.out"}
|
||||||
|
{"Run with pr14862-1.c libpr14862.so"
|
||||||
|
"--as-needed tmpdir/libpr14862-1.o tmpdir/libpr14862.so" ""
|
||||||
|
{dummy.c} "pr14862" "pr14862.out"}
|
||||||
}
|
}
|
||||||
|
|
||||||
# NetBSD ELF systems do not currently support the .*_array sections.
|
# NetBSD ELF systems do not currently support the .*_array sections.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue