mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
* 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:
parent
40e2047218
commit
35809fad09
@ -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.
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user