aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/paread.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/paread.c b/gdb/paread.c
index 843e372..d48a93b 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;