From: Dave Anglin Date: Thu, 21 Nov 2002 19:06:28 +0000 (+0000) Subject: * config/tc-hppa.h (tc_frob_symbol): Frob undefined unused symbols X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1d4216362a349005db262bb100ec54555453e6e0;p=binutils-gdb.git * config/tc-hppa.h (tc_frob_symbol): Frob undefined unused symbols only if they have default visibility. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 306dc935642..4e75d4ae8cb 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2002-11-21 Randolph Chung + + * config/tc-hppa.h (tc_frob_symbol): Frob undefined unused symbols + only if they have default visibility. + 2002-11-21 Richard Henderson * config/tc-alpha.c (alpha_fix_adjustable): Remove redundant diff --git a/gas/config/tc-hppa.h b/gas/config/tc-hppa.h index ea1ce9cc930..842ff318fb4 100644 --- a/gas/config/tc-hppa.h +++ b/gas/config/tc-hppa.h @@ -178,7 +178,8 @@ int hppa_fix_adjustable PARAMS((struct fix *)); #define tc_frob_symbol(sym,punt) \ { \ - if ((S_GET_SEGMENT (sym) == &bfd_und_section && ! symbol_used_p (sym)) \ + if ((S_GET_SEGMENT (sym) == &bfd_und_section && ! symbol_used_p (sym) && \ + ELF_ST_VISIBILITY (S_GET_OTHER (sym)) == STV_DEFAULT) \ || (S_GET_SEGMENT (sym) == &bfd_abs_section \ && ! S_IS_EXTERNAL (sym)) \ || strcmp (S_GET_NAME (sym), "$global$") == 0 \