* paread.c (pa_symtab_read): Also filter out local symbols starting

with "L$".
This commit is contained in:
Jeff Law
1993-11-01 03:44:53 +00:00
parent 73edb321e3
commit ffb4ea6ab0

View File

@ -188,7 +188,8 @@ pa_symtab_read (abfd, addr, objfile)
cause problems if these special symbols have the
same value as real symbols. So ignore them. Also "LC$". */
if (*symname == 'L'
&& (symname[2] == '$' || symname[3] == '$'))
&& (symname[1] == '$' || symname[2] == '$'
|| symname[3] == '$'))
continue;
break;