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
|
@ -1157,9 +1157,9 @@ frame_register_unwind (frame_info *next_frame, int regnum,
|
|||
{
|
||||
if (!*optimizedp && !*unavailablep)
|
||||
memcpy (bufferp, value_contents_all (value).data (),
|
||||
TYPE_LENGTH (value_type (value)));
|
||||
value_type (value)->length ());
|
||||
else
|
||||
memset (bufferp, 0, TYPE_LENGTH (value_type (value)));
|
||||
memset (bufferp, 0, value_type (value)->length ());
|
||||
}
|
||||
|
||||
/* Dispose of the new value. This prevents watchpoints from
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue