diff options
author | Doug Evans <dje@google.com> | 2012-07-12 21:16:09 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2012-07-12 21:16:09 +0000 |
commit | f80c6f3fc14af9299fb0fdce31580e34c9654d54 (patch) | |
tree | 765e8e1299f33190c2abb90ec08616cbd5b54aac /gdb | |
parent | 93c0ef376838b425ab9aa48c737c7757408df3fd (diff) | |
download | gdb-f80c6f3fc14af9299fb0fdce31580e34c9654d54.zip gdb-f80c6f3fc14af9299fb0fdce31580e34c9654d54.tar.gz gdb-f80c6f3fc14af9299fb0fdce31580e34c9654d54.tar.bz2 |
* psymtab.c (map_symbol_filenames_psymtab): Skip shared psymtabs.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/psymtab.c | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7f2bfb3..4b78b31 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2012-07-12 Doug Evans <dje@google.com> + + * psymtab.c (map_symbol_filenames_psymtab): Skip shared psymtabs. + 2012-07-10 Doug Evans <dje@google.com> PR gdb/13498 diff --git a/gdb/psymtab.c b/gdb/psymtab.c index 6e84094..5623e2d 100644 --- a/gdb/psymtab.c +++ b/gdb/psymtab.c @@ -1159,6 +1159,11 @@ map_symbol_filenames_psymtab (struct objfile *objfile, if (ps->readin) continue; + /* We can skip shared psymtabs here, because any file name will be + attached to the unshared psymtab. */ + if (ps->user != NULL) + continue; + /* Anonymous psymtabs don't have a file name. */ if (ps->anonymous) continue; |