diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-30 20:05:34 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-01-15 12:06:04 -0700 |
commit | 9e6c82ad4f55d0ff125721b94fa2191f1cc1000a (patch) | |
tree | 12ef5dcf38f7ae24931ee1f2cf541cb4dc476775 /gdb/dbxread.c | |
parent | 6ef55de768d4ab9065bc92aa00d828212c4af4f0 (diff) | |
download | gdb-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/dbxread.c')
-rw-r--r-- | gdb/dbxread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/dbxread.c b/gdb/dbxread.c index 9a10a1f..eab5113 100644 --- a/gdb/dbxread.c +++ b/gdb/dbxread.c @@ -3250,7 +3250,7 @@ process_one_symbol (int type, int desc, CORE_ADDR valu, char *name, N_MAIN within a given objfile, complain() and choose arbitrarily. (kingdon) */ if (name != NULL) - set_main_name (name); + set_main_name (name, language_unknown); break; /* The following symbol types can be ignored. */ |