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/somread.c | |
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/somread.c')
-rw-r--r-- | gdb/somread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/somread.c b/gdb/somread.c index 36a2b28..d519d2c 100644 --- a/gdb/somread.c +++ b/gdb/somread.c @@ -340,7 +340,7 @@ som_symfile_read (struct objfile *objfile, int mainline) /* Now read information from the stabs debug sections. This is emitted by gcc. */ - stabsect_build_psymtabs (objfile, mainline, + stabsect_build_psymtabs (objfile, "$GDB_SYMBOLS$", "$GDB_STRINGS$", "$TEXT$"); } |