diff options
author | Doug Evans <dje@google.com> | 2014-01-14 18:19:51 -0800 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2014-01-14 18:19:51 -0800 |
commit | 540c2971fa25a14ae16a9bb14ba2f424b5f1ea96 (patch) | |
tree | feef7b3931cac287ac2ca1409c62212e75f24c0d /gdb/ChangeLog | |
parent | 818d220a6fe3d0512a226188e9164245a02c9185 (diff) | |
download | gdb-540c2971fa25a14ae16a9bb14ba2f424b5f1ea96.zip gdb-540c2971fa25a14ae16a9bb14ba2f424b5f1ea96.tar.gz gdb-540c2971fa25a14ae16a9bb14ba2f424b5f1ea96.tar.bz2 |
psymtab cleanup patch 1/3
This is the first of a set of three patches to cleanup psymtab.c a bit.
Basically, these two functions do not belong in psymtab.c:
expand_partial_symbol_names, map_partial_symbol_filenames,
and "partial" does not belong in the function name.
This first patch moves them to a better location.
The second patch adds some typedefs for function parameters to
quick_symbol_functions.expand_symtabs_matching.
The third patch removes "partial" from the function names
and uses them in more places.
* psymtab.c (expand_partial_symbol_names): Delete, moved to symfile.c.
(map_partial_symbol_filenames): Ditto.
* psymtab.h (expand_partial_symbol_names): Delete, moved to symfile.h.
(map_partial_symbol_filenames): Ditto.
* symfile.c (expand_partial_symbol_names): Moved here from psymtab.c.
(map_partial_symbol_filenames): Ditto.
* symfile.h (expand_partial_symbol_names): Moved here from psymtab.h.
(map_partial_symbol_filenames): Ditto.
* symtab.c: Delete #include "psymtab.h".
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3daf77f..015e4cc 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,15 @@ +2014-01-14 Doug Evans <dje@google.com> + + * psymtab.c (expand_partial_symbol_names): Delete, moved to symfile.c. + (map_partial_symbol_filenames): Ditto. + * psymtab.h (expand_partial_symbol_names): Delete, moved to symfile.h. + (map_partial_symbol_filenames): Ditto. + * symfile.c (expand_partial_symbol_names): Moved here from psymtab.c. + (map_partial_symbol_filenames): Ditto. + * symfile.h (expand_partial_symbol_names): Moved here from psymtab.h. + (map_partial_symbol_filenames): Ditto. + * symtab.c: Delete #include "psymtab.h". + 2014-01-14 Pedro Alves <palves@redhat.com> Tom Tromey <tromey@redhat.com> |