mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 01:50:24 +08:00
gdb: remove TYPE_UNSIGNED
gdb/ChangeLog: * gdbtypes.h (TYPE_UNSIGNED): Remove, replace all uses with type::is_unsigned. Change-Id: I84f76f5cd44ff7294e421d317376a9e476bc8666
This commit is contained in:
@ -527,7 +527,7 @@ vlscm_convert_typed_number (const char *func_name, int obj_arg_pos, SCM obj,
|
||||
if (is_integral_type (type)
|
||||
|| type->code () == TYPE_CODE_PTR)
|
||||
{
|
||||
if (TYPE_UNSIGNED (type))
|
||||
if (type->is_unsigned ())
|
||||
{
|
||||
ULONGEST max;
|
||||
|
||||
@ -573,7 +573,7 @@ vlscm_convert_typed_number (const char *func_name, int obj_arg_pos, SCM obj,
|
||||
static int
|
||||
vlscm_integer_fits_p (SCM obj, struct type *type)
|
||||
{
|
||||
if (TYPE_UNSIGNED (type))
|
||||
if (type->is_unsigned ())
|
||||
{
|
||||
ULONGEST max;
|
||||
|
||||
|
Reference in New Issue
Block a user