mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-05 21:50:21 +08:00
gdb: remove TYPE_VECTOR
gdb/ChangeLog: * gdbtypes.h (TYPE_VECTOR): Remove, replace all uses with type::is_vector. Change-Id: I1ac28755af44b1585c190553f9961288c8fb9137
This commit is contained in:
@ -2134,7 +2134,7 @@ default_print_one_register_info (struct ui_file *file,
|
||||
common_val_print (val, &format_stream, 0, &opts, current_language);
|
||||
/* If not a vector register, print it also according to its
|
||||
natural format. */
|
||||
if (print_raw_format && TYPE_VECTOR (regtype) == 0)
|
||||
if (print_raw_format && regtype->is_vector () == 0)
|
||||
{
|
||||
pad_to_column (format_stream, value_column_2);
|
||||
get_user_print_options (&opts);
|
||||
|
Reference in New Issue
Block a user