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/mips-tdep.c | |
parent | 653223d3561b5976d12ade101113af9d08348b8c (diff) | |
download | fsf-binutils-gdb-c6d940a9569deb4a89a5628caa78b1ccfcfd2bdf.zip fsf-binutils-gdb-c6d940a9569deb4a89a5628caa78b1ccfcfd2bdf.tar.gz fsf-binutils-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/mips-tdep.c')
-rw-r--r-- | gdb/mips-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index e0f0488..b55bfba 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -5091,7 +5091,7 @@ mips_n32n64_push_dummy_call (struct gdbarch *gdbarch, struct value *function, || typecode == TYPE_CODE_INT)) || (partial_len < 4 && typecode == TYPE_CODE_INT - && !TYPE_UNSIGNED (arg_type))) + && !arg_type->is_unsigned ())) regval = extract_signed_integer (val, partial_len, byte_order); else |