* alpha-tdep.c, mips-tdep.c (init_extra_frame_info):

Do not set saved registers from heuristics for a sigtramp frame.

	* dwarfread.c (enum_type):  Determine signedness of enum type
	from enumerators.

	* mips-tdep.c:  Include gdb_string.h, gcc -Wall lint.

	* rs6000-nat.c (xcoff_relocate_core):  Fix typo.

	* valops.c (value_repeat):  Fix length of memory transfer to
	match recent allocate_repeat_value change.
This commit is contained in:
Peter Schauer
1995-10-21 13:14:53 +00:00
parent 8490169d21
commit 09af586854
6 changed files with 99 additions and 44 deletions

View File

@@ -1689,6 +1689,7 @@ enum_type (dip, objfile)
unsigned short blocksz;
struct symbol *sym;
int nbytes;
int unsigned_enum = 1;
if ((type = lookup_utype (dip -> die_ref)) == NULL)
{
@@ -1749,6 +1750,8 @@ enum_type (dip, objfile)
SYMBOL_CLASS (sym) = LOC_CONST;
SYMBOL_TYPE (sym) = type;
SYMBOL_VALUE (sym) = list -> field.bitpos;
if (SYMBOL_VALUE (sym) < 0)
unsigned_enum = 0;
add_symbol_to_list (sym, list_in_scope);
}
/* Now create the vector of fields, and record how big it is. This is
@@ -1758,6 +1761,8 @@ enum_type (dip, objfile)
vector. */
if (nfields > 0)
{
if (unsigned_enum)
TYPE_FLAGS (type) |= TYPE_FLAG_UNSIGNED;
TYPE_NFIELDS (type) = nfields;
TYPE_FIELDS (type) = (struct field *)
obstack_alloc (&objfile->symbol_obstack, sizeof (struct field) * nfields);