diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2021-11-19 22:09:25 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2022-02-06 15:48:18 -0500 |
commit | ab5f850eed6aba84050d075e8c8a2cb16a876b15 (patch) | |
tree | 05057981c94964184fbeca51093765525eeb01b2 /gdb/source.c | |
parent | 422f1ea279deea8530b679e4770e97f669797543 (diff) | |
download | gdb-ab5f850eed6aba84050d075e8c8a2cb16a876b15.zip gdb-ab5f850eed6aba84050d075e8c8a2cb16a876b15.tar.gz gdb-ab5f850eed6aba84050d075e8c8a2cb16a876b15.tar.bz2 |
gdb: remove COMPUNIT_PRODUCER macro, add getter/setter
Add a getter and a setter for a compunit_symtab's producer. Remove the
corresponding macro and adjust all callers.
Change-Id: Ia1d6d8a0e247a08a21af23819d71e49b37d8931b
Diffstat (limited to 'gdb/source.c')
-rw-r--r-- | gdb/source.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/source.c b/gdb/source.c index 3f04746..07ea2af 100644 --- a/gdb/source.c +++ b/gdb/source.c @@ -724,8 +724,8 @@ info_source_command (const char *ignore, int from_tty) printf_filtered (_("Source language is %s.\n"), language_str (s->language)); printf_filtered (_("Producer is %s.\n"), - COMPUNIT_PRODUCER (cust) != NULL - ? COMPUNIT_PRODUCER (cust) : _("unknown")); + (cust->producer ()) != nullptr + ? cust->producer () : _("unknown")); printf_filtered (_("Compiled with %s debugging format.\n"), cust->debugformat ()); printf_filtered (_("%s preprocessor macro info.\n"), |