2004-06-11 Randolph Chung <tausq@debian.org>

* somread.c (som_symtab_read): Exclude gcc local symbols.
This commit is contained in:
Randolph Chung 2004-06-11 23:44:24 +00:00
parent e12a46c96a
commit b887c273ae
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2004-06-11 Randolph Chung <tausq@debian.org>
* somread.c (som_symtab_read): Exclude gcc local symbols.
2004-06-11 Randolph Chung <tausq@debian.org>
* infrun.c (handle_inferior_event): Handle the case when a trampoline

View File

@ -219,6 +219,7 @@ som_symtab_read (bfd *abfd, struct objfile *objfile,
if ((symname[0] == 'L' && symname[1] == '$')
|| (symname[0] == '$' && symname[strlen (symname) - 1] == '$')
|| (symname[0] == 'D' && symname[1] == '$')
|| (strncmp (symname, "L0\001", 3) == 0)
|| (strncmp (symname, "$PIC", 4) == 0))
continue;
break;