diff options
author | Tom Tromey <tom@tromey.com> | 2019-03-10 15:01:26 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-04-10 08:05:17 -0600 |
commit | ee3711344b6e0cffeb237fa6889aab04853f9004 (patch) | |
tree | 5060768218634a46e39ac942111f7f50a2cf23ee /gdb | |
parent | bf227d6105cb3908cde816429c84569da12e829c (diff) | |
download | gdb-ee3711344b6e0cffeb237fa6889aab04853f9004.zip gdb-ee3711344b6e0cffeb237fa6889aab04853f9004.tar.gz gdb-ee3711344b6e0cffeb237fa6889aab04853f9004.tar.bz2 |
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.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/objfiles.c | 2 | ||||
-rw-r--r-- | gdb/symfile.c | 6 |
3 files changed, 6 insertions, 7 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8b43298..7a8338e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 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. * minsyms.c (lookup_minimal_symbol): Use foreach. (lookup_minimal_symbol_text, lookup_minimal_symbol_by_pc_name) diff --git a/gdb/objfiles.c b/gdb/objfiles.c index 1c95e06..ada5edc 100644 --- a/gdb/objfiles.c +++ b/gdb/objfiles.c @@ -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); diff --git a/gdb/symfile.c b/gdb/symfile.c index ba82f1b..dd9c4ae 100644 --- a/gdb/symfile.c +++ b/gdb/symfile.c @@ -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) |