diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2020-09-14 11:07:57 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2020-09-14 11:07:57 -0400 |
commit | 15152a54aebbd4eba6151b20333ba48ccfd703c5 (patch) | |
tree | 454753d02fe51d8c5f0e714aa82fbf14b9ae8efe /gdb/dwarf2/read.c | |
parent | c6d940a9569deb4a89a5628caa78b1ccfcfd2bdf (diff) | |
download | gdb-15152a54aebbd4eba6151b20333ba48ccfd703c5.zip gdb-15152a54aebbd4eba6151b20333ba48ccfd703c5.tar.gz gdb-15152a54aebbd4eba6151b20333ba48ccfd703c5.tar.bz2 |
gdb: add type::has_no_signedness / type::set_has_no_signedness
Add the `has_no_signedness` and `set_has_no_signednes` methods on `struct
type`, in order to remove the `TYPE_NOSIGN` 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) <has_no_signedness,
set_has_no_signedness>: New methods.
(TYPE_NOSIGN): Use type::has_no_signedness, change all write
call sites to use type::set_has_no_signedness.
Change-Id: I80d8e774316d146fbd814b2928ad5392bada39d5
Diffstat (limited to 'gdb/dwarf2/read.c')
-rw-r--r-- | gdb/dwarf2/read.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c index b461bd1..299b04b 100644 --- a/gdb/dwarf2/read.c +++ b/gdb/dwarf2/read.c @@ -18058,7 +18058,7 @@ read_base_type (struct die_info *die, struct dwarf2_cu *cu) } if (name && strcmp (name, "char") == 0) - TYPE_NOSIGN (type) = 1; + type->set_has_no_signedness (true); maybe_set_alignment (cu, die, type); |