summaryrefslogtreecommitdiff
path: root/gdb/source.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/source.c
parent5b6074611edfdd1590e8da1ca443950b47942bbb (diff)
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/source.c')
-rw-r--r--gdb/source.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/source.c b/gdb/source.c
index ee89626427..e99fff8852 100644
--- a/gdb/source.c
+++ b/gdb/source.c
@@ -722,7 +722,8 @@ info_source_command (const char *ignore, int from_tty)
printf_filtered (_("Contains %d line%s.\n"), (int) offsets->size (),
offsets->size () == 1 ? "" : "s");
- printf_filtered (_("Source language is %s.\n"), language_str (s->language));
+ printf_filtered (_("Source language is %s.\n"),
+ language_str (s->language ()));
printf_filtered (_("Producer is %s.\n"),
(cust->producer ()) != nullptr
? cust->producer () : _("unknown"));