mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 18:08:24 +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:
@ -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
|
||||
|
Reference in New Issue
Block a user