diff options
author | Christian Biesinger <cbiesinger@google.com> | 2019-12-14 15:47:22 -0500 |
---|---|---|
committer | Christian Biesinger <cbiesinger@google.com> | 2019-12-16 00:39:50 -0600 |
commit | 747cfc8c6bb23d40b3fa987f6c3df9d3a0d7b817 (patch) | |
tree | 1ce63753912e2acfad8c2937b342885150c853c3 /gdb/language.c | |
parent | 0d037fafed44c6704d0f15e8d49815caebcd7814 (diff) | |
download | binutils-gdb-747cfc8c6bb23d40b3fa987f6c3df9d3a0d7b817.tar.gz |
Use symbol_set_language to set a symbol's language
Instead of using SYMBOL_LANGUAGE (sym) = foo.
Having only a single way to set a symbol's language is clearer and this
is also a requirement for making set_language a member function.
gdb/ChangeLog:
2019-12-15 Christian Biesinger <cbiesinger@google.com>
* ada-exp.y (write_ambiguous_var): Call symbol_set_language to
set the language of sym.
* language.c (language_alloc_type_symbol): Likewise.
Change-Id: I85338ea2e4121155f2da222fe0aa6b7d3ffe26f7
Diffstat (limited to 'gdb/language.c')
-rw-r--r-- | gdb/language.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/language.c b/gdb/language.c index 6ab0ca323d2..ed850350b17 100644 --- a/gdb/language.c +++ b/gdb/language.c @@ -1051,7 +1051,7 @@ language_alloc_type_symbol (enum language lang, struct type *type) symbol = new (gdbarch_obstack (gdbarch)) struct symbol (); symbol->name = TYPE_NAME (type); - symbol->language = lang; + symbol_set_language (symbol, lang, nullptr); symbol->owner.arch = gdbarch; SYMBOL_OBJFILE_OWNED (symbol) = 0; SYMBOL_TYPE (symbol) = type; |