gdb: add type::target_is_stub / type::set_target_is_stub
authorSimon Marchi <simon.marchi@efficios.com>
Mon, 14 Sep 2020 15:07:59 +0000 (11:07 -0400)
committerSimon Marchi <simon.marchi@efficios.com>
Mon, 14 Sep 2020 15:07:59 +0000 (11:07 -0400)
commit8f53807e5c957fb947fb8d61fc2583e2dcbd6f06
tree649228e0a30a2999240fd9de4691f72a259dc536
parente46d3488de137cd5a01377513ff49e32595456af
gdb: add type::target_is_stub / type::set_target_is_stub

Add the `target_is_stub` and `set_target_is_stub` methods on `struct
type`, in order to remove the `TYPE_TARGET_STUB` macro.  In this patch,
the macro is changed to use the getter, so all the call sites of the
macro that are used as a setter are changed to use the setter method
directly.  The next patch will remove the macro completely.

gdb/ChangeLog:

* gdbtypes.h (struct type) <target_is_stub, set_target_is_stub>:
New methods.
(TYPE_TARGET_STUB): Use type::is_stub, change all write call
sites to use type::set_target_is_stub.

Change-Id: I9c71a89adc7ae8d018db9ee156f41c623be0484a
gdb/ChangeLog
gdb/ctfread.c
gdb/dwarf2/read.c
gdb/fbsd-tdep.c
gdb/gdbtypes.c
gdb/gdbtypes.h
gdb/linux-tdep.c
gdb/mdebugread.c
gdb/stabsread.c
This page took 0.031705 seconds and 4 git commands to generate.