mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-17 16:05:56 +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:
@ -256,7 +256,7 @@ generate_register_struct (struct ui_file *stream, struct gdbarch *gdbarch,
|
||||
|
||||
if (mode != NULL)
|
||||
{
|
||||
if (TYPE_UNSIGNED (regtype))
|
||||
if (regtype->is_unsigned ())
|
||||
fputs_unfiltered ("unsigned ", stream);
|
||||
fprintf_unfiltered (stream,
|
||||
"int %s"
|
||||
|
Reference in New Issue
Block a user