diff options
Diffstat (limited to 'gdb/frame.h')
-rw-r--r-- | gdb/frame.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/frame.h b/gdb/frame.h index d9c59d17912..5fa3d895bbd 100644 --- a/gdb/frame.h +++ b/gdb/frame.h @@ -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. |