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/arm-tdep.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/arm-tdep.c')
-rw-r--r-- | gdb/arm-tdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c index f46913e..d36856e 100644 --- a/gdb/arm-tdep.c +++ b/gdb/arm-tdep.c @@ -1394,9 +1394,9 @@ arm_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc) missing (e.g. for -gstabs), assuming the GNU tools. */ if (post_prologue_pc && (cust == NULL - || COMPUNIT_PRODUCER (cust) == NULL - || startswith (COMPUNIT_PRODUCER (cust), "GNU ") - || producer_is_llvm (COMPUNIT_PRODUCER (cust)))) + || cust->producer () == NULL + || startswith (cust->producer (), "GNU ") + || producer_is_llvm (cust->producer ()))) return post_prologue_pc; if (post_prologue_pc != 0) |