summaryrefslogtreecommitdiff
path: root/gdb/frame.h
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2004-06-27 22:26:34 +0000
committerUlrich Weigand <uweigand@de.ibm.com>2004-06-27 22:26:34 +0000
commit35809fad091f9bb44481719c255a9e4da9345c53 (patch)
tree6f0ae0b86daeae38b151a937d52c823cf94b54a4 /gdb/frame.h
parent40e2047218f16d9bdf4fb452f614cf12c7d2e1b2 (diff)
downloadbinutils-gdb-35809fad091f9bb44481719c255a9e4da9345c53.tar.gz
* frame.h (struct frame_id): Change bit field type of stack_addr_p,
code_addr_p and special_addr_p to 'unsigned int'.
Diffstat (limited to 'gdb/frame.h')
-rw-r--r--gdb/frame.h6
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.