mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 18:39:34 +08:00
* paread.c (pa_symtab_read): Also filter out local symbols starting
with "L$".
This commit is contained in:
@ -188,7 +188,8 @@ pa_symtab_read (abfd, addr, objfile)
|
|||||||
cause problems if these special symbols have the
|
cause problems if these special symbols have the
|
||||||
same value as real symbols. So ignore them. Also "LC$". */
|
same value as real symbols. So ignore them. Also "LC$". */
|
||||||
if (*symname == 'L'
|
if (*symname == 'L'
|
||||||
&& (symname[2] == '$' || symname[3] == '$'))
|
&& (symname[1] == '$' || symname[2] == '$'
|
||||||
|
|| symname[3] == '$'))
|
||||||
continue;
|
continue;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user