code_addr_p and special_addr_p to 'unsigned int'.
+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.
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.