* somread.c (som_symtab_read): Exclude gcc local symbols.
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
ends up in the runtime resolver, and if the trampoline has no name.
Rearrange the code so that all the trampoline processing happens before
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;