diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2020-05-22 16:55:15 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2020-05-22 16:55:15 -0400 |
commit | 1f704f761b34e145f5eabdc222301ce6e9ec9102 (patch) | |
tree | 89c8b6dbf40b606ef045929b718d9271093057a3 /gdb/f-typeprint.c | |
parent | 5e33d5f4e1a5f2c3556ee31715ddc030d039b597 (diff) | |
download | binutils-gdb-1f704f761b34e145f5eabdc222301ce6e9ec9102.tar.gz |
gdb: remove TYPE_NFIELDS macro
Remove `TYPE_NFIELDS`, changing all the call sites to use
`type::num_fields` 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_NFIELDS): Remove. Change all cal sites to use
type::num_fields instead.
Change-Id: Ib73be4c36f9e770e0f729bac3b5257d7cb2f9591
Diffstat (limited to 'gdb/f-typeprint.c')
-rw-r--r-- | gdb/f-typeprint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/f-typeprint.c b/gdb/f-typeprint.c index 820ba5ff0ef..7057a06ef40 100644 --- a/gdb/f-typeprint.c +++ b/gdb/f-typeprint.c @@ -254,7 +254,7 @@ f_type_print_varspec_suffix (struct type *type, struct ui_file *stream, case TYPE_CODE_FUNC: { - int i, nfields = TYPE_NFIELDS (type); + int i, nfields = type->num_fields (); f_type_print_varspec_suffix (TYPE_TARGET_TYPE (type), stream, 0, passed_a_ptr, 0, @@ -430,7 +430,7 @@ f_type_print_base (struct type *type, struct ui_file *stream, int show, if (show > 0) { fputs_filtered ("\n", stream); - for (index = 0; index < TYPE_NFIELDS (type); index++) + for (index = 0; index < type->num_fields (); index++) { f_type_print_base (TYPE_FIELD_TYPE (type, index), stream, show - 1, level + 4); |