diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2020-09-14 11:07:58 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2020-09-14 11:07:58 -0400 |
commit | 20ce41238d912c3ced2870501f0c45cf7a03de92 (patch) | |
tree | 630ff96627efa10d3b1fb4e72f9091b9c80ae181 /gdb/dwarf2 | |
parent | 15152a54aebbd4eba6151b20333ba48ccfd703c5 (diff) | |
download | gdb-20ce41238d912c3ced2870501f0c45cf7a03de92.zip gdb-20ce41238d912c3ced2870501f0c45cf7a03de92.tar.gz gdb-20ce41238d912c3ced2870501f0c45cf7a03de92.tar.bz2 |
gdb: remove TYPE_NOSIGN
gdb/ChangeLog:
* gdbtypes.h (TYPE_NOSIGN): Remove, replace all uses with
type::has_no_signedness.
Change-Id: Iaf8d1cedad195d03a4358e90f6ada77290d03bf2
Diffstat (limited to 'gdb/dwarf2')
-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 299b04b..267cf0f 100644 --- a/gdb/dwarf2/read.c +++ b/gdb/dwarf2/read.c @@ -10502,7 +10502,7 @@ dwarf2_compute_name (const char *name, &cu->comp_unit_obstack, cu, &value, &bytes, &baton); - if (TYPE_NOSIGN (type)) + if (type->has_no_signedness ()) /* GDB prints characters as NUMBER 'CHAR'. If that's changed, this can use value_print instead. */ c_printchar (value, type, &buf); |