diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2023-08-31 11:46:27 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2023-08-31 13:16:14 -0400 |
commit | 3757d2d44f63b446469723e0a7a8c0dc2f695a6c (patch) | |
tree | d649580e7a3b2b92ab132bd623443695bcfc0bc0 /gdb/arm-tdep.c | |
parent | gdb: remove FIELD_BITSIZE (diff) | |
download | binutils-gdb-3757d2d44f63b446469723e0a7a8c0dc2f695a6c.tar.gz binutils-gdb-3757d2d44f63b446469723e0a7a8c0dc2f695a6c.tar.bz2 binutils-gdb-3757d2d44f63b446469723e0a7a8c0dc2f695a6c.zip |
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/arm-tdep.c')
-rw-r--r-- | gdb/arm-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c index 6d4c9d04cbc..fcdd304eef3 100644 --- a/gdb/arm-tdep.c +++ b/gdb/arm-tdep.c @@ -9109,7 +9109,7 @@ arm_return_in_memory (struct gdbarch *gdbarch, struct type *type) /* Bitfields are not addressable. If the field bitsize is zero, then the field is not packed. Hence it cannot be a bitfield or any other packed type. */ - if (TYPE_FIELD_BITSIZE (type, i) == 0) + if (type->field (i).bitsize () == 0) { nRc = 1; break; |