* valprint.c (val_print_type_code_flags): Fix for bitfields larger
than 32 bits.
This commit is contained in:
parent
76b7178d0d
commit
befae75944
2 changed files with 6 additions and 2 deletions
|
@ -341,13 +341,14 @@ void
|
|||
val_print_type_code_flags (struct type *type, const gdb_byte *valaddr,
|
||||
struct ui_file *stream)
|
||||
{
|
||||
LONGEST val = unpack_long (type, valaddr);
|
||||
ULONGEST val = unpack_long (type, valaddr);
|
||||
int bitpos, nfields = TYPE_NFIELDS (type);
|
||||
|
||||
fputs_filtered ("[ ", stream);
|
||||
for (bitpos = 0; bitpos < nfields; bitpos++)
|
||||
{
|
||||
if (TYPE_FIELD_BITPOS (type, bitpos) != -1 && (val & (1 << bitpos)))
|
||||
if (TYPE_FIELD_BITPOS (type, bitpos) != -1 &&
|
||||
(val & ((ULONGEST)1 << bitpos)))
|
||||
{
|
||||
if (TYPE_FIELD_NAME (type, bitpos))
|
||||
fprintf_filtered (stream, "%s ", TYPE_FIELD_NAME (type, bitpos));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue