diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2020-09-14 11:07:59 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2020-09-14 11:07:59 -0400 |
commit | 8f53807e5c957fb947fb8d61fc2583e2dcbd6f06 (patch) | |
tree | 649228e0a30a2999240fd9de4691f72a259dc536 /gdb/ctfread.c | |
parent | e46d3488de137cd5a01377513ff49e32595456af (diff) | |
download | gdb-8f53807e5c957fb947fb8d61fc2583e2dcbd6f06.zip gdb-8f53807e5c957fb947fb8d61fc2583e2dcbd6f06.tar.gz gdb-8f53807e5c957fb947fb8d61fc2583e2dcbd6f06.tar.bz2 |
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
Diffstat (limited to 'gdb/ctfread.c')
-rw-r--r-- | gdb/ctfread.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/ctfread.c b/gdb/ctfread.c index 14f6404..81490ba 100644 --- a/gdb/ctfread.c +++ b/gdb/ctfread.c @@ -776,7 +776,7 @@ read_array_type (struct ctf_context *ccp, ctf_id_t tid) { range_type->bounds ()->high.set_undefined (); TYPE_LENGTH (type) = 0; - TYPE_TARGET_STUB (type) = 1; + type->set_target_is_stub (true); } else TYPE_LENGTH (type) = ctf_type_size (fp, tid); @@ -876,7 +876,8 @@ read_typedef_type (struct ctf_context *ccp, ctf_id_t tid, TYPE_TARGET_TYPE (this_type) = target_type; else TYPE_TARGET_TYPE (this_type) = NULL; - TYPE_TARGET_STUB (this_type) = TYPE_TARGET_TYPE (this_type) ? 1 : 0; + + this_type->set_target_is_stub (TYPE_TARGET_TYPE (this_type) != nullptr); return set_tid_type (objfile, tid, this_type); } |