|
|
|
@ -347,8 +347,8 @@ val_print_type_code_flags (struct type *type, const gdb_byte *valaddr, |
|
|
|
fputs_filtered ("[ ", stream); |
|
|
|
for (bitpos = 0; bitpos < nfields; bitpos++) |
|
|
|
{ |
|
|
|
if (TYPE_FIELD_BITPOS (type, bitpos) != -1 && |
|
|
|
(val & ((ULONGEST)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)); |
|
|
|
|