* paread.c (pa_symtab_read): Also filter out local symbols starting
authorJeff Law <law@redhat.com>
Mon, 1 Nov 1993 03:44:53 +0000 (03:44 +0000)
committerJeff Law <law@redhat.com>
Mon, 1 Nov 1993 03:44:53 +0000 (03:44 +0000)
with "L$".

gdb/paread.c

index 843e3723330442a17afc649c3042b61843d401f6..d48a93b85c99165b830f73c86065f44c70acef4a 100644 (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;