From: Ulrich Weigand Date: Sun, 27 Jun 2004 22:26:34 +0000 (+0000) Subject: * frame.h (struct frame_id): Change bit field type of stack_addr_p, X-Git-Tag: csl-arm-2004-q3~1053 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=35809fad091f9bb44481719c255a9e4da9345c53;p=platform%2Fupstream%2Fbinutils.git * frame.h (struct frame_id): Change bit field type of stack_addr_p, code_addr_p and special_addr_p to 'unsigned int'. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f5ce86b..fa149f3 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2004-06-27 Ulrich Weigand + + * 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 * i386v4-nat.c: Update copyright year and tweak comment. diff --git a/gdb/frame.h b/gdb/frame.h index d9c59d1..5fa3d89 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.