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 | c6d940a9569deb4a89a5628caa78b1ccfcfd2bdf (patch) | |
tree | c5d25c2c2cd369f74ed393926638302e9da95c02 /gdb/s390-tdep.c | |
parent | 653223d3561b5976d12ade101113af9d08348b8c (diff) | |
download | gdb-c6d940a9569deb4a89a5628caa78b1ccfcfd2bdf.zip gdb-c6d940a9569deb4a89a5628caa78b1ccfcfd2bdf.tar.gz gdb-c6d940a9569deb4a89a5628caa78b1ccfcfd2bdf.tar.bz2 |
gdb: remove TYPE_UNSIGNED
gdb/ChangeLog:
* gdbtypes.h (TYPE_UNSIGNED): Remove, replace all uses with
type::is_unsigned.
Change-Id: I84f76f5cd44ff7294e421d317376a9e476bc8666
Diffstat (limited to 'gdb/s390-tdep.c')
-rw-r--r-- | gdb/s390-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/s390-tdep.c b/gdb/s390-tdep.c index 65cb237..bc6f98e 100644 --- a/gdb/s390-tdep.c +++ b/gdb/s390-tdep.c @@ -1818,7 +1818,7 @@ s390_handle_arg (struct s390_arg_state *as, struct value *arg, /* Place value in least significant bits of the register or memory word and sign- or zero-extend to full word size. This also applies to a struct or union. */ - val = TYPE_UNSIGNED (type) + val = type->is_unsigned () ? extract_unsigned_integer (value_contents (arg), length, byte_order) : extract_signed_integer (value_contents (arg), @@ -2046,7 +2046,7 @@ s390_register_return_value (struct gdbarch *gdbarch, struct type *type, if (out != NULL) regcache->cooked_read_part (S390_R2_REGNUM, word_size - length, length, out); - else if (TYPE_UNSIGNED (type)) + else if (type->is_unsigned ()) regcache_cooked_write_unsigned (regcache, S390_R2_REGNUM, extract_unsigned_integer (in, length, byte_order)); |