projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
73edb32
)
* paread.c (pa_symtab_read): Also filter out local symbols starting
author
Jeff Law
<law@redhat.com>
Mon, 1 Nov 1993 03:44:53 +0000
(
03:44
+0000)
committer
Jeff Law
<law@redhat.com>
Mon, 1 Nov 1993 03:44:53 +0000
(
03:44
+0000)
with "L$".
gdb/paread.c
patch
|
blob
|
history
diff --git
a/gdb/paread.c
b/gdb/paread.c
index 843e3723330442a17afc649c3042b61843d401f6..d48a93b85c99165b830f73c86065f44c70acef4a 100644
(file)
--- 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;