36 lines
1.4 KiB
Diff
36 lines
1.4 KiB
Diff
diff --git a/bfd/elfnn-loongarch.c b/bfd/elfnn-loongarch.c
|
|
index a623aa32..dc9f4e49 100644
|
|
--- a/bfd/elfnn-loongarch.c
|
|
+++ b/bfd/elfnn-loongarch.c
|
|
@@ -980,7 +980,7 @@ loongarch_elf_adjust_dynamic_symbol (struct bfd_link_info *info,
|
|
(although we could actually do it here). */
|
|
if (h->type == STT_FUNC || h->type == STT_GNU_IFUNC || h->needs_plt)
|
|
{
|
|
- if (h->plt.refcount < 0
|
|
+ if (h->plt.refcount <= 0
|
|
|| (h->type != STT_GNU_IFUNC
|
|
&& (SYMBOL_REFERENCES_LOCAL (info, h)
|
|
|| (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
|
|
@@ -993,8 +993,6 @@ loongarch_elf_adjust_dynamic_symbol (struct bfd_link_info *info,
|
|
h->plt.offset = MINUS_ONE;
|
|
h->needs_plt = 0;
|
|
}
|
|
- else
|
|
- h->needs_plt = 1;
|
|
|
|
return true;
|
|
}
|
|
diff --git a/ld/testsuite/ld-elf/shared.exp b/ld/testsuite/ld-elf/shared.exp
|
|
index 8b7069c2..718416b0 100644
|
|
--- a/ld/testsuite/ld-elf/shared.exp
|
|
+++ b/ld/testsuite/ld-elf/shared.exp
|
|
@@ -502,7 +502,7 @@ run_ld_link_tests [list \
|
|
# but that is just an optimization so don't complain loudly.
|
|
setup_xfail *-*-*
|
|
clear_xfail alpha-*-* bfin-*-linux* csky-*-* frv-*-* hppa*-*-* i?86-*-*
|
|
-clear_xfail ia64-*-* microblaze-*-* powerpc*-*-* x86_64-*-* xtensa-*-*
|
|
+clear_xfail ia64-*-* loongarch*-*-* microblaze-*-* powerpc*-*-* x86_64-*-* xtensa-*-*
|
|
run_ld_link_tests {
|
|
{"pr22374 function pointer initialization"
|
|
"" "tmpdir/pr22374.so" "" "pr22374a.s"
|