mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 01:50:24 +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
|
||||
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;
|
||||
|
||||
|
Reference in New Issue
Block a user