aboutsummaryrefslogtreecommitdiff
path: root/gdb/symtab.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2010-07-13 20:52:52 +0000
committerTom Tromey <tromey@redhat.com>2010-07-13 20:52:52 +0000
commitdd78685836dcecb25b85b2166b2b5c04b54cdd14 (patch)
tree40e6283bbd9d66cc25accb88778721396c8972dd /gdb/symtab.c
parent9291a0cd80ce4d50cbe531a872b7b00e3e67e3c9 (diff)
downloadgdb-dd78685836dcecb25b85b2166b2b5c04b54cdd14.zip
gdb-dd78685836dcecb25b85b2166b2b5c04b54cdd14.tar.gz
gdb-dd78685836dcecb25b85b2166b2b5c04b54cdd14.tar.bz2
* symfile.c (set_initial_language): Update.
(deduce_language_from_filename): Argument type now const. * symtab.h (find_main_filename): Update. (deduce_language_from_filename): Update. * symtab.c (find_main_filename): Make result const. * dwarf2read.c (dw2_find_symbol_file): Change return type. * psymtab.c (find_symbol_file_from_partial): Change return type. * symfile.h (struct quick_symbol_functions) <find_symbol_file>: Make result const.
Diffstat (limited to 'gdb/symtab.c')
-rw-r--r--gdb/symtab.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/symtab.c b/gdb/symtab.c
index 4e48e48..07910db 100644
--- a/gdb/symtab.c
+++ b/gdb/symtab.c
@@ -1617,14 +1617,16 @@ basic_lookup_transparent_type (const char *name)
/* FIXME: What about languages without main() or specially linked
executables that have no main() ? */
-char *
+const char *
find_main_filename (void)
{
struct objfile *objfile;
- char *result, *name = main_name ();
+ char *name = main_name ();
ALL_OBJFILES (objfile)
{
+ const char *result;
+
if (!objfile->sf)
continue;
result = objfile->sf->qf->find_symbol_file (objfile, name);