mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-01 11:59:27 +08:00
* 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.
This commit is contained in:
@ -358,6 +358,9 @@ create_range_type (result_type, index_type, low_bound, high_bound)
|
||||
TYPE_FIELD_TYPE (result_type, 0) = builtin_type_int; /* FIXME */
|
||||
TYPE_FIELD_TYPE (result_type, 1) = builtin_type_int; /* FIXME */
|
||||
|
||||
if(low_bound >= 0)
|
||||
TYPE_FLAGS (result_type) |= TYPE_FLAG_UNSIGNED;
|
||||
|
||||
return (result_type);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user