From 35809fad091f9bb44481719c255a9e4da9345c53 Mon Sep 17 00:00:00 2001 From: Ulrich Weigand Date: Sun, 27 Jun 2004 22:26:34 +0000 Subject: * frame.h (struct frame_id): Change bit field type of stack_addr_p, code_addr_p and special_addr_p to 'unsigned int'. --- gdb/frame.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gdb/frame.h') 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. -- cgit v1.2.1