diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/psymtab.c | 5 |
2 files changed, 5 insertions, 5 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index fa4d5b7..7955aa4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2021-03-26 Tom Tromey <tom@tromey.com> + + * psymtab.c (psymbol_functions::expand_symtabs_matching): Remove + "user" check. + 2021-03-26 Simon Marchi <simon.marchi@efficios.com> Pedro Alves <pedro@palves.net> diff --git a/gdb/psymtab.c b/gdb/psymtab.c index 5978172..5a64166 100644 --- a/gdb/psymtab.c +++ b/gdb/psymtab.c @@ -1313,11 +1313,6 @@ psymbol_functions::expand_symtabs_matching if (ps->readin_p (objfile)) continue; - /* We skip shared psymtabs because file-matching doesn't apply - to them; but we search them later in the loop. */ - if (ps->user != NULL) - continue; - if (file_matcher) { bool match; |