forked from Imagelibrary/binutils-gdb
gdb: remove TYPE_NOSIGN
gdb/ChangeLog: * gdbtypes.h (TYPE_NOSIGN): Remove, replace all uses with type::has_no_signedness. Change-Id: Iaf8d1cedad195d03a4358e90f6ada77290d03bf2
This commit is contained in:
@@ -194,7 +194,7 @@ convert_int (compile_c_instance *context, struct type *type)
|
||||
{
|
||||
if (context->plugin ().version () >= GCC_C_FE_VERSION_1)
|
||||
{
|
||||
if (TYPE_NOSIGN (type))
|
||||
if (type->has_no_signedness ())
|
||||
{
|
||||
gdb_assert (TYPE_LENGTH (type) == 1);
|
||||
return context->plugin ().char_type ();
|
||||
|
||||
Reference in New Issue
Block a user