* frame.h (struct frame_id): Change bit field type of stack_addr_p,

code_addr_p and special_addr_p to 'unsigned int'.
This commit is contained in:
Ulrich Weigand 2004-06-27 22:26:34 +00:00
parent 40e2047218
commit 35809fad09
2 changed files with 8 additions and 3 deletions

View 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.

View 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.