aboutsummaryrefslogtreecommitdiff
path: root/gdb/buildsym.c
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@efficios.com>2021-11-20 08:47:30 -0500
committerSimon Marchi <simon.marchi@efficios.com>2022-02-06 16:03:44 -0500
commit1ee2e9f9304d05f2962bbc4b83096b850fe4e433 (patch)
tree5df392b5191f79e7193b0d53cfb03c77233abeb7 /gdb/buildsym.c
parent5b6074611edfdd1590e8da1ca443950b47942bbb (diff)
downloadgdb-1ee2e9f9304d05f2962bbc4b83096b850fe4e433.zip
gdb-1ee2e9f9304d05f2962bbc4b83096b850fe4e433.tar.gz
gdb-1ee2e9f9304d05f2962bbc4b83096b850fe4e433.tar.bz2
gdb: remove SYMTAB_LANGUAGE macro, add getter/setter
Add a getter and a setter for a symtab's language. Remove the corresponding macro and adjust all callers. Change-Id: I9f4d840b11c19f80f39bac1bce020fdd1739e11f
Diffstat (limited to 'gdb/buildsym.c')
-rw-r--r--gdb/buildsym.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/buildsym.c b/gdb/buildsym.c
index 2a99a96..27206f9 100644
--- a/gdb/buildsym.c
+++ b/gdb/buildsym.c
@@ -991,7 +991,7 @@ buildsym_compunit::end_symtab_with_blockvector (struct block *static_block,
we created the subfile, and we may have altered our
opinion of what language it is from things we found in
the symbols. */
- symtab->language = subfile->language;
+ symtab->set_language (subfile->language);
}
/* Make sure the filetab of main_subfile is the primary filetab of the CU. */