* frame.h (struct frame_id): Change bit field type of stack_addr_p,
authorUlrich Weigand <uweigand@de.ibm.com>
Sun, 27 Jun 2004 22:26:34 +0000 (22:26 +0000)
committerUlrich Weigand <uweigand@de.ibm.com>
Sun, 27 Jun 2004 22:26:34 +0000 (22:26 +0000)
code_addr_p and special_addr_p to 'unsigned int'.

gdb/ChangeLog
gdb/frame.h

index f5ce86b..fa149f3 100644 (file)
@@ -1,3 +1,8 @@
+2004-06-27  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * frame.h (struct frame_id): Change bit field type of stack_addr_p, 
+       code_addr_p and special_addr_p to 'unsigned int'.
+
 2004-06-27  Mark Kettenis  <kettenis@gnu.org>
 
        * i386v4-nat.c: Update copyright year and tweak comment.
index d9c59d1..5fa3d89 100644 (file)
@@ -124,9 +124,9 @@ struct frame_id
   CORE_ADDR special_addr;
 
   /* Flags to indicate the above fields have valid contents.  */
-  int stack_addr_p : 1;
-  int code_addr_p : 1;
-  int special_addr_p : 1;
+  unsigned int stack_addr_p : 1;
+  unsigned int code_addr_p : 1;
+  unsigned int special_addr_p : 1;
 };
 
 /* Methods for constructing and comparing Frame IDs.