mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-18 14:53:32 +08:00
1a3b5c34fe
non_ir_ref_dynamic wasn't being set in the case where we have a versioned dynamic symbol definition with a non-versioned matching IR symbol. bfd/ PR 22220 * elflink.c (_bfd_elf_merge_symbol): Set non_ir_ref_dynamic in a case where plugin_notice isn't called. ld/ * testsuite/ld-plugin/pr22220.h, * testsuite/ld-plugin/pr22220lib.cc, * testsuite/ld-plugin/pr22220lib.ver, * testsuite/ld-plugin/pr22220main.cc: New test. * testsuite/ld-plugin/lto.exp: Run it.
13 lines
143 B
C++
13 lines
143 B
C++
#include <stdio.h>
|
|
#include "pr22220.h"
|
|
|
|
int main()
|
|
{
|
|
if (boo() == goo())
|
|
{
|
|
printf ("PASS\n");
|
|
return 0;
|
|
}
|
|
return 1;
|
|
}
|