diff options
author | Frank Ch. Eigler <fche@redhat.com> | 1998-05-04 15:16:42 +0000 |
---|---|---|
committer | Frank Ch. Eigler <fche@redhat.com> | 1998-05-04 15:16:42 +0000 |
commit | ce22529028dd9d6afbd97851334ee4cb19f2e2a9 (patch) | |
tree | 84f4b6e92e9e1036e5a49c6b64a7c8a0ff165f40 /gdb/stabsread.c | |
parent | d116929ee7e109a04689ffb77c6487bbf549799b (diff) | |
download | gdb-ce22529028dd9d6afbd97851334ee4cb19f2e2a9.zip gdb-ce22529028dd9d6afbd97851334ee4cb19f2e2a9.tar.gz gdb-ce22529028dd9d6afbd97851334ee4cb19f2e2a9.tar.bz2 |
* Fixes for chill PR 15681
Fri May 1 19:51:32 1998 Frank Ch. Eigler <fche@cygnus.com>
* stabsread.c (read_one_struct_field): Do not override supplied
bitfield size for a range type value.
* gdbtypes.c (create_range_type): For a range with positive
lower limit, declare range type as unsigned.
Diffstat (limited to 'gdb/stabsread.c')
-rw-r--r-- | gdb/stabsread.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/stabsread.c b/gdb/stabsread.c index e873610..480bb1c 100644 --- a/gdb/stabsread.c +++ b/gdb/stabsread.c @@ -3434,6 +3434,7 @@ read_one_struct_field (fip, pp, p, type, objfile) and treat enums as if they had the width of ints. */ if (TYPE_CODE (FIELD_TYPE (fip->list->field)) != TYPE_CODE_INT + && TYPE_CODE (FIELD_TYPE (fip->list->field)) != TYPE_CODE_RANGE && TYPE_CODE (FIELD_TYPE (fip->list->field)) != TYPE_CODE_BOOL && TYPE_CODE (FIELD_TYPE (fip->list->field)) != TYPE_CODE_ENUM) { |