mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-07 16:14:12 +08:00
gdb: remove TYPE_LENGTH
Remove the macro, replace all uses with calls to type::length. Change-Id: Ib9bdc954576860b21190886534c99103d6a47afb
This commit is contained in:
@ -771,7 +771,7 @@ typy_get_sizeof (PyObject *self, void *closure)
|
||||
|
||||
if (size_varies)
|
||||
Py_RETURN_NONE;
|
||||
return gdb_py_object_from_longest (TYPE_LENGTH (type)).release ();
|
||||
return gdb_py_object_from_longest (type->length ()).release ();
|
||||
}
|
||||
|
||||
/* Return the alignment of the type represented by SELF, in bytes. */
|
||||
|
Reference in New Issue
Block a user