* config/tc-hppa.h (tc_frob_symbol): Always punt "$global$" symbol
        for ELF.
This commit is contained in:
Jeff Law 1999-07-06 09:44:58 +00:00
parent 03b36ee109
commit 5437775413

@ -155,7 +155,8 @@ void elf_hppa_final_processing PARAMS ((void));
{ \
if ((S_GET_SEGMENT (sym) == &bfd_und_section && ! symbol_used_p (sym)) \
|| (S_GET_SEGMENT (sym) == &bfd_abs_section \
&& ! S_IS_EXTERNAL (sym))) \
&& ! S_IS_EXTERNAL (sym)) \
|| strcmp (S_GET_NAME (sym), "$global$") == 0) \
punt = 1; \
}
#endif