aboutsummaryrefslogtreecommitdiff
path: root/gdb/c-typeprint.c
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2023-08-31 11:46:27 -0400
committerSimon Marchi <simon.marchi@efficios.com>2023-08-31 13:16:14 -0400
commit3757d2d44f63b446469723e0a7a8c0dc2f695a6c (patch)
treed649580e7a3b2b92ab132bd623443695bcfc0bc0 /gdb/c-typeprint.c
parent3be8c91910114853a64ab87fd1efaef220bb0205 (diff)
downloadfsf-binutils-gdb-3757d2d44f63b446469723e0a7a8c0dc2f695a6c.zip
fsf-binutils-gdb-3757d2d44f63b446469723e0a7a8c0dc2f695a6c.tar.gz
fsf-binutils-gdb-3757d2d44f63b446469723e0a7a8c0dc2f695a6c.tar.bz2
gdb: remove TYPE_FIELD_BITSIZE
Replace with type::field + field::bitsize. Change-Id: I2a24755a33683e4a2775a6d2a7b7a9ae7362e43a Approved-By: Tom Tromey <tom@tromey.com>
Diffstat (limited to 'gdb/c-typeprint.c')
-rw-r--r--gdb/c-typeprint.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/gdb/c-typeprint.c b/gdb/c-typeprint.c
index a23ceb0..708250c 100644
--- a/gdb/c-typeprint.c
+++ b/gdb/c-typeprint.c
@@ -1161,8 +1161,7 @@ c_type_print_base_struct_union (struct type *type, struct ui_file *stream,
unnamed fields. This would lead to misleading
results if the compiler does not put out fields
for such things (I don't know what it does). */
- gdb_printf (stream, " : %d",
- TYPE_FIELD_BITSIZE (type, i));
+ gdb_printf (stream, " : %d", type->field (i).bitsize ());
}
gdb_printf (stream, ";\n");
}
@@ -1591,11 +1590,11 @@ c_type_print_base_1 (struct type *type, struct ui_file *stream,
language, &local_flags, podata);
gdb_printf (stream, " @%s",
plongest (type->field (i).loc_bitpos ()));
- if (TYPE_FIELD_BITSIZE (type, i) > 1)
+ if (type->field (i).bitsize () > 1)
{
gdb_printf (stream, "-%s",
plongest (type->field (i).loc_bitpos ()
- + TYPE_FIELD_BITSIZE (type, i)
+ + type->field (i).bitsize ()
- 1));
}
gdb_printf (stream, ";\n");