mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 02:24:46 +08:00
Fix a couple of comments
While working on objfiles I noticed a typo in one comment, and another comment that, as far as I can tell, has been obsolete for a very long time. gdb/ChangeLog 2019-04-10 Tom Tromey <tom@tromey.com> * symfile.c (reread_symbols): Remove old comment. * objfiles.c (free_all_objfiles): Fix a typo.
This commit is contained in:
parent
bf227d6105
commit
ee3711344b
@ -1,3 +1,8 @@
|
||||
2019-04-10 Tom Tromey <tom@tromey.com>
|
||||
|
||||
* symfile.c (reread_symbols): Remove old comment.
|
||||
* objfiles.c (free_all_objfiles): Fix a typo.
|
||||
|
||||
2019-04-10 Tom Tromey <tom@tromey.com>
|
||||
|
||||
* ia64-tdep.c (ia64_get_dyn_info_list): Use foreach.
|
||||
|
@ -699,7 +699,7 @@ free_all_objfiles (void)
|
||||
{
|
||||
struct so_list *so;
|
||||
|
||||
/* Any objfile referencewould become stale. */
|
||||
/* Any objfile reference would become stale. */
|
||||
for (so = master_so_list (); so; so = so->next)
|
||||
gdb_assert (so->objfile == NULL);
|
||||
|
||||
|
@ -2432,12 +2432,6 @@ reread_symbols (void)
|
||||
int res;
|
||||
std::vector<struct objfile *> new_objfiles;
|
||||
|
||||
/* With the addition of shared libraries, this should be modified,
|
||||
the load time should be saved in the partial symbol tables, since
|
||||
different tables may come from different source files. FIXME.
|
||||
This routine should then walk down each partial symbol table
|
||||
and see if the symbol table that it originates from has been changed. */
|
||||
|
||||
for (objfile *objfile : current_program_space->objfiles ())
|
||||
{
|
||||
if (objfile->obfd == NULL)
|
||||
|
Loading…
Reference in New Issue
Block a user