diff options
author | Tristan Gingold <gingold@adacore.com> | 2009-12-02 11:34:37 +0000 |
---|---|---|
committer | Tristan Gingold <gingold@adacore.com> | 2009-12-02 11:34:37 +0000 |
commit | c67a9c901aa0c78a85229ffc837a97d2589a99f8 (patch) | |
tree | 3ca926e38606444af4c27177991fff27f07f5c10 /gdb/stabsread.h | |
parent | 06be6983bb907e61d30fa4c8ec1b434bbfee9e45 (diff) | |
download | gdb-c67a9c901aa0c78a85229ffc837a97d2589a99f8.zip gdb-c67a9c901aa0c78a85229ffc837a97d2589a99f8.tar.gz gdb-c67a9c901aa0c78a85229ffc837a97d2589a99f8.tar.bz2 |
2009-12-02 Tristan Gingold <gingold@adacore.com>
* dwarf2read.c (dwarf2_build_psymtabs_easy): Remove mainline parameter.
(dwarf2_build_psymtabs_hard): Ditto.
(dwarf2_build_psymtabs): Ajust calls.
* stabsread.h (elfstab_build_psymtabs): Remove mainline parameter on
the prototype.
(coffstab_build_psymtabs): Ditto.
(stabsect_build_psymtabs): Ditto.
* dbxread.c (coffstab_build_psymtabs): Remove mainline parameter on
the definition.
(elfstab_build_psymtabs): Ditto.
(stabsect_build_psymtabs): Ditto.
* coffread.c (coff_symfile_read): Adjust call.
* elfread.c (elf_symfile_read): Ditto.
* somread.c (som_symfile_read): Ditto.
Diffstat (limited to 'gdb/stabsread.h')
-rw-r--r-- | gdb/stabsread.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gdb/stabsread.h b/gdb/stabsread.h index 83458d1..19cc863 100644 --- a/gdb/stabsread.h +++ b/gdb/stabsread.h @@ -175,21 +175,18 @@ extern void process_one_symbol (int, int, CORE_ADDR, char *, struct section_offsets *, struct objfile *); extern void elfstab_build_psymtabs (struct objfile *objfile, - int mainline, asection *stabsect, file_ptr stabstroffset, unsigned int stabstrsize); extern void coffstab_build_psymtabs (struct objfile *objfile, - int mainline, CORE_ADDR textaddr, unsigned int textsize, struct stab_section_list *stabs, file_ptr stabstroffset, unsigned int stabstrsize); -extern void stabsect_build_psymtabs - (struct objfile *objfile, - int mainline, char *stab_name, char *stabstr_name, char *text_name); +extern void stabsect_build_psymtabs (struct objfile *objfile, char *stab_name, + char *stabstr_name, char *text_name); extern void elfstab_offset_sections (struct objfile *, struct partial_symtab *); |