* valprint.c (val_print_type_code_flags): Fix for bitfields larger
authorMark Kettenis <kettenis@gnu.org>
Tue, 22 Aug 2006 20:32:39 +0000 (20:32 +0000)
committerMark Kettenis <kettenis@gnu.org>
Tue, 22 Aug 2006 20:32:39 +0000 (20:32 +0000)
than 32 bits.

gdb/ChangeLog
gdb/valprint.c

index 618a1de..7ac7591 100644 (file)
@@ -1,5 +1,8 @@
 2006-08-22  Mark Kettenis  <kettenis@gnu.org>
 
+       * valprint.c (val_print_type_code_flags): Fix for bitfields larger
+       than 32 bits.
+
        * gdbtypes.c (init_flags_type): Set all fields to zero instead of
        just the first one.
 
index d730917..4f834f2 100644 (file)
@@ -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));