gdb: remove TYPE_LENGTH
Remove the macro, replace all uses with calls to type::length. Change-Id: Ib9bdc954576860b21190886534c99103d6a47afb
This commit is contained in:
parent
b6cdbc9a81
commit
df86565b31
150 changed files with 1320 additions and 1323 deletions
|
@ -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. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue