* psymtab.c (expand_partial_symbol_tables): Use

ALL_OBJFILE_PSYMTABS.
This commit is contained in:
Tom Tromey 2011-02-28 18:16:59 +00:00
parent 2093702991
commit 477d0d57b0
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2011-02-28 Tom Tromey <tromey@redhat.com>
* psymtab.c (expand_partial_symbol_tables): Use
ALL_OBJFILE_PSYMTABS.
2011-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
* objc-lang.c (selectors_info): Error on too long REGEXP.

View File

@ -933,9 +933,7 @@ expand_partial_symbol_tables (struct objfile *objfile)
{
struct partial_symtab *psymtab;
for (psymtab = objfile->psymtabs;
psymtab != NULL;
psymtab = psymtab->next)
ALL_OBJFILE_PSYMTABS (objfile, psymtab)
{
psymtab_to_symtab (psymtab);
}