diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-09-26 16:36:15 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-10-29 16:44:44 -0400 |
commit | b610c04548a39dbce6d51c33d7a8125e59066939 (patch) | |
tree | 9ebf5e8721754311148f61ea22e71126a8318574 /gdb/ax-gdb.c | |
parent | 2ad53ea10c14445d6074814bbdfe46bd787038cb (diff) | |
download | gdb-b610c04548a39dbce6d51c33d7a8125e59066939.zip gdb-b610c04548a39dbce6d51c33d7a8125e59066939.tar.gz gdb-b610c04548a39dbce6d51c33d7a8125e59066939.tar.bz2 |
gdb: remove TYPE_FIELD_BITPOS
Remove TYPE_FIELD_BITPOS, replace its uses with type::field +
field::loc_bitpos.
Change-Id: Iccd8d5a77e5352843a837babaa6bd284162e0320
Diffstat (limited to 'gdb/ax-gdb.c')
-rw-r--r-- | gdb/ax-gdb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/ax-gdb.c b/gdb/ax-gdb.c index 29d1bab..b56652a 100644 --- a/gdb/ax-gdb.c +++ b/gdb/ax-gdb.c @@ -1310,14 +1310,14 @@ gen_primitive_field (struct agent_expr *ax, struct axs_value *value, if (TYPE_FIELD_PACKED (type, fieldno)) gen_bitfield_ref (ax, value, type->field (fieldno).type (), (offset * TARGET_CHAR_BIT - + TYPE_FIELD_BITPOS (type, fieldno)), + + type->field (fieldno).loc_bitpos ()), (offset * TARGET_CHAR_BIT - + TYPE_FIELD_BITPOS (type, fieldno) + + type->field (fieldno).loc_bitpos () + TYPE_FIELD_BITSIZE (type, fieldno))); else { gen_offset (ax, offset - + TYPE_FIELD_BITPOS (type, fieldno) / TARGET_CHAR_BIT); + + type->field (fieldno).loc_bitpos () / TARGET_CHAR_BIT); value->kind = axs_lvalue_memory; value->type = type->field (fieldno).type (); } |