aboutsummaryrefslogtreecommitdiff
path: root/gdb/symtab.h
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-30 20:05:34 -0700
committerTom Tromey <tromey@redhat.com>2014-01-15 12:06:04 -0700
commit9e6c82ad4f55d0ff125721b94fa2191f1cc1000a (patch)
tree12ef5dcf38f7ae24931ee1f2cf541cb4dc476775 /gdb/symtab.h
parent6ef55de768d4ab9065bc92aa00d828212c4af4f0 (diff)
downloadgdb-9e6c82ad4f55d0ff125721b94fa2191f1cc1000a.zip
gdb-9e6c82ad4f55d0ff125721b94fa2191f1cc1000a.tar.gz
gdb-9e6c82ad4f55d0ff125721b94fa2191f1cc1000a.tar.bz2
make language_of_main static
This makes the global language_of_main static. Now it can be set only via a new argument to set_main_name. 2014-01-15 Tom Tromey <tromey@redhat.com> * dbxread.c (process_one_symbol): Update. * dwarf2read.c (read_partial_die): Update. * symfile.c (set_initial_language): Call main_language. * symtab.c (language_of_main): Now static. (set_main_name): Add 'lang' parameter. (find_main_name): Update. (main_language): New function. (symtab_observer_executable_changed): Update. * symtab.h (set_main_name): Update. (language_of_main): Remove. (main_language): Declare.
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r--gdb/symtab.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h
index 97e9ad7..4a93374 100644
--- a/gdb/symtab.h
+++ b/gdb/symtab.h
@@ -1324,9 +1324,9 @@ extern struct cleanup *make_cleanup_free_search_symbols (struct symbol_search
FIXME: cagney/2001-03-20: Can't make main_name() const since some
of the calling code currently assumes that the string isn't
const. */
-extern void set_main_name (const char *name);
+extern void set_main_name (const char *name, enum language lang);
extern /*const */ char *main_name (void);
-extern enum language language_of_main;
+extern enum language main_language (void);
/* Check global symbols in objfile. */
struct symbol *lookup_global_symbol_from_objfile (const struct objfile *,