From bd63c870088388fc55efbf50f2dfc0592fe874e5 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Mon, 14 Sep 2020 11:08:03 -0400 Subject: gdb: remove TYPE_VECTOR gdb/ChangeLog: * gdbtypes.h (TYPE_VECTOR): Remove, replace all uses with type::is_vector. Change-Id: I1ac28755af44b1585c190553f9961288c8fb9137 --- gdb/infcmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/infcmd.c') diff --git a/gdb/infcmd.c b/gdb/infcmd.c index cfc3169..6f20b7d 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -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); -- cgit v1.1