diff options
author | Sami Wagiaalla <swagiaal@redhat.com> | 2010-08-09 19:42:48 +0000 |
---|---|---|
committer | Sami Wagiaalla <swagiaal@redhat.com> | 2010-08-09 19:42:48 +0000 |
commit | 33e5013ed29270c3b6c5eaf46225e66b0fb6bc2c (patch) | |
tree | 8b4356fc8833355173d0ab685e2d4d9851727b14 /gdb/mdebugread.c | |
parent | 955974c6c5ddc44febc20560a975a76acf3aa5ca (diff) | |
download | gdb-33e5013ed29270c3b6c5eaf46225e66b0fb6bc2c.zip gdb-33e5013ed29270c3b6c5eaf46225e66b0fb6bc2c.tar.gz gdb-33e5013ed29270c3b6c5eaf46225e66b0fb6bc2c.tar.bz2 |
create and use symbol_set_language.
2010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
* symtab.h: Renamed SYMBOL_INIT_LANGUAGE_SPECIFIC to
SYMBOL_SET_LANGUAGE.
(symbol_init_language_specific): Renamed to symbol_set_language.
* symtab.c (symbol_init_language_specific): Removed redundant check
for language_cplus.
Renamed to symbol_set_language.
* stabsread.c (define_symbol): Updated.
(read_enum_type): Updated
* psymtab.c (add_psymbol_to_bcache): Updated.
* minsyms.c (install_minimal_symbols): Updated.
* coffread.c (process_coff_symbol): SYMBOL_SET_LANGUAGE instead of
SYMBOL_LANGUAGE to set the language.
* minsyms.c (prim_record_minimal_symbol_full): Ditto.
* mdebugread.c (new_symbol): Ditto.
* cp-namespace.c (check_one_possible_namespace_symbol): Ditto.
* dwarf2read.c (new_symbol_full): Ditto.
* jv-lang.c (add_class_symbol): Ditto.
Diffstat (limited to 'gdb/mdebugread.c')
-rw-r--r-- | gdb/mdebugread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/mdebugread.c b/gdb/mdebugread.c index 2e18fa4..0467816 100644 --- a/gdb/mdebugread.c +++ b/gdb/mdebugread.c @@ -4794,7 +4794,7 @@ new_symbol (char *name) sizeof (struct symbol))); memset (s, 0, sizeof (*s)); - SYMBOL_LANGUAGE (s) = psymtab_language; + SYMBOL_SET_LANGUAGE (s, psymtab_language); SYMBOL_SET_NAMES (s, name, strlen (name), 1, current_objfile); return s; } |