mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-27 01:28:46 +00: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:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user