From: Jeff Law Date: Mon, 1 Nov 1993 03:44:53 +0000 (+0000) Subject: * paread.c (pa_symtab_read): Also filter out local symbols starting X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ffb4ea6ab0372d8d1d922237a4add2180e3d674a;p=binutils-gdb.git * paread.c (pa_symtab_read): Also filter out local symbols starting with "L$". --- diff --git a/gdb/paread.c b/gdb/paread.c index 843e3723330..d48a93b85c9 100644 --- a/gdb/paread.c +++ b/gdb/paread.c @@ -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;