* dwarf2read.c (struct abbrev_info): Make members name, form 16 bits.

(struct attribute): Ditto.
This commit is contained in:
Doug Evans 2008-09-15 15:32:01 +00:00
parent f42fb57409
commit 9d25dd43e8
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2008-09-15 Doug Evans <dje@google.com>
* dwarf2read.c (struct abbrev_info): Make members name, form 16 bits.
(struct attribute): Ditto.
2008-09-14 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
* hppa-linux-tdep.c (hppa_linux_sigtramp_frame_unwind_cache): Record

View File

@ -513,15 +513,15 @@ struct abbrev_info
struct attr_abbrev
{
enum dwarf_attribute name;
enum dwarf_form form;
ENUM_BITFIELD(dwarf_attribute) name : 16;
ENUM_BITFIELD(dwarf_form) form : 16;
};
/* Attributes have a name and a value */
struct attribute
{
enum dwarf_attribute name;
enum dwarf_form form;
ENUM_BITFIELD(dwarf_attribute) name : 16;
ENUM_BITFIELD(dwarf_form) form : 16;
union
{
char *str;