Approved by Jim Blandy:
authorFred Fish <fnf@specifix.com>
Sun, 9 Dec 2001 07:26:47 +0000 (07:26 +0000)
committerFred Fish <fnf@specifix.com>
Sun, 9 Dec 2001 07:26:47 +0000 (07:26 +0000)
2001-12-08  Fred Fish  <fnf@redhat.com>
* dwarf2read.c (read_base_type): Rename is_unsigned to type_flags.
For unsigned types set TYPE_FLAG_UNSIGNED and pass it to
init_type().

gdb/ChangeLog
gdb/dwarf2read.c

index 4236c6c7018432d00f89aa01ca7dd710132ed025..a8576c9dddfe762b77cd95ba412f817e68b8922d 100644 (file)
@@ -1,3 +1,9 @@
+2001-12-08  Fred Fish  <fnf@redhat.com>
+
+       * dwarf2read.c (read_base_type): Rename is_unsigned to type_flags.
+       For unsigned types set TYPE_FLAG_UNSIGNED and pass it to
+       init_type().
+
 2001-12-08  Daniel Jacobowitz  <drow@mvista.com>
 
        * Makefile.in (cp-valprint.o): Add dependency on $(cp_abi_h).
index 7e1e2ced1524d1a316ba15323aa24492cda82856..17d81f9c236b5a66b5643feb4bfc42a503be34e1 100644 (file)
@@ -2939,18 +2939,18 @@ read_base_type (struct die_info *die, struct objfile *objfile)
   if (attr && DW_STRING (attr))
     {
       enum type_code code = TYPE_CODE_INT;
-      int is_unsigned = 0;
+      int type_flags = 0;
 
       switch (encoding)
        {
        case DW_ATE_address:
          /* Turn DW_ATE_address into a void * pointer.  */
          code = TYPE_CODE_PTR;
-         is_unsigned = 1;
+         type_flags |= TYPE_FLAG_UNSIGNED;
          break;
        case DW_ATE_boolean:
          code = TYPE_CODE_BOOL;
-         is_unsigned = 1;
+         type_flags |= TYPE_FLAG_UNSIGNED;
          break;
        case DW_ATE_complex_float:
          code = TYPE_CODE_COMPLEX;
@@ -2963,14 +2963,14 @@ read_base_type (struct die_info *die, struct objfile *objfile)
          break;
        case DW_ATE_unsigned:
        case DW_ATE_unsigned_char:
-         is_unsigned = 1;
+         type_flags |= TYPE_FLAG_UNSIGNED;
          break;
        default:
          complain (&dwarf2_unsupported_at_encoding,
                    dwarf_type_encoding_name (encoding));
          break;
        }
-      type = init_type (code, size, is_unsigned, DW_STRING (attr), objfile);
+      type = init_type (code, size, type_flags, DW_STRING (attr), objfile);
       if (encoding == DW_ATE_address)
        TYPE_TARGET_TYPE (type) = dwarf2_fundamental_type (objfile, FT_VOID);
     }
This page took 0.034129 seconds and 4 git commands to generate.