From ffb4ea6ab0372d8d1d922237a4add2180e3d674a Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Mon, 1 Nov 1993 03:44:53 +0000 Subject: [PATCH] * paread.c (pa_symtab_read): Also filter out local symbols starting with "L$". --- gdb/paread.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.30.2