mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-24 16:05:53 +08:00
gdb: remove TYPE_CODE macro
Remove TYPE_CODE, changing all the call sites to use type::code directly. This is quite a big diff, but this was mostly done using sed and coccinelle. A few call sites were done by hand. gdb/ChangeLog: * gdbtypes.h (TYPE_CODE): Remove. Change all call sites to use type::code instead.
This commit is contained in:
@ -240,9 +240,9 @@ py_print_value (struct ui_out *out, struct value *val,
|
||||
if (args_type == MI_PRINT_ALL_VALUES)
|
||||
should_print = 1;
|
||||
else if (args_type == MI_PRINT_SIMPLE_VALUES
|
||||
&& TYPE_CODE (type) != TYPE_CODE_ARRAY
|
||||
&& TYPE_CODE (type) != TYPE_CODE_STRUCT
|
||||
&& TYPE_CODE (type) != TYPE_CODE_UNION)
|
||||
&& type->code () != TYPE_CODE_ARRAY
|
||||
&& type->code () != TYPE_CODE_STRUCT
|
||||
&& type->code () != TYPE_CODE_UNION)
|
||||
should_print = 1;
|
||||
}
|
||||
else if (args_type != NO_VALUES)
|
||||
|
Reference in New Issue
Block a user