diff options
author | Tristan Gingold <gingold@adacore.com> | 2010-02-03 14:13:16 +0000 |
---|---|---|
committer | Tristan Gingold <gingold@adacore.com> | 2010-02-03 14:13:16 +0000 |
commit | ac8035ab9e1b8839f04ede4ff7f96e9c86c896cb (patch) | |
tree | a5110cf99082f1ba824bacf96099dffc478bd9e5 /gdb/ChangeLog | |
parent | be52b7566d327cea0584ccded6271dd1e1439dd1 (diff) | |
download | gdb-ac8035ab9e1b8839f04ede4ff7f96e9c86c896cb.zip gdb-ac8035ab9e1b8839f04ede4ff7f96e9c86c896cb.tar.gz gdb-ac8035ab9e1b8839f04ede4ff7f96e9c86c896cb.tar.bz2 |
2010-02-03 Tristan Gingold <gingold@adacore.com>
* symfile.h (struct sym_fns): Add sym_relocate field.
(default_symfile_relocate): New prototype.
(symfile_relocate_debug_section): First argument is now an objfile.
* symfile.c (default_symfile_relocate): Rename from
symfile_relocate_debug_section, first argument is now an objfile.
(symfile_relocate_debug_section): New function.
* coffread.c (coff_sym_fns): Set sym_relocate field.
* somread.c (som_sym_fns): Ditto.
* mipsread.c (ecoff_sym_fns): Ditto.
* machoread.c (macho_sym_fns): Ditto.
* elfread.c (elf_sym_fns): Ditto.
* dwarf2read.c (dwarf2_read_section): Ditto.
* xcoffread.c (xcoff_sym_fns): Ditto.
* dbxread.c (aout_sym_fns): Ditto.
(dbx_psymtab_to_symtab): Adjust call to symfile_relocate_debug_section.
(elfstab_build_psymtabs): Ditto.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 52886a8..fb0ea02 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,22 @@ +2010-02-03 Tristan Gingold <gingold@adacore.com> + + * symfile.h (struct sym_fns): Add sym_relocate field. + (default_symfile_relocate): New prototype. + (symfile_relocate_debug_section): First argument is now an objfile. + * symfile.c (default_symfile_relocate): Rename from + symfile_relocate_debug_section, first argument is now an objfile. + (symfile_relocate_debug_section): New function. + * coffread.c (coff_sym_fns): Set sym_relocate field. + * somread.c (som_sym_fns): Ditto. + * mipsread.c (ecoff_sym_fns): Ditto. + * machoread.c (macho_sym_fns): Ditto. + * elfread.c (elf_sym_fns): Ditto. + * dwarf2read.c (dwarf2_read_section): Ditto. + * xcoffread.c (xcoff_sym_fns): Ditto. + * dbxread.c (aout_sym_fns): Ditto. + (dbx_psymtab_to_symtab): Adjust call to symfile_relocate_debug_section. + (elfstab_build_psymtabs): Ditto. + 2010-02-03 H.J. Lu <hongjiu.lu@intel.com> * defs.h (MAX_REGISTER_SIZE): Increase to 32. |