diff options
author | Tom Tromey <tromey@redhat.com> | 2010-08-27 21:03:39 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2010-08-27 21:03:39 +0000 |
commit | 8b93c54cd74f951dba7ded460baa8a587799b33d (patch) | |
tree | 62bdd051bcb13e4040d6ae0dfbddc2eff6a0a89c | |
parent | b56648ad4f60540f9b2a6b71ced34d1128232b61 (diff) | |
download | gdb-8b93c54cd74f951dba7ded460baa8a587799b33d.zip gdb-8b93c54cd74f951dba7ded460baa8a587799b33d.tar.gz gdb-8b93c54cd74f951dba7ded460baa8a587799b33d.tar.bz2 |
* dwarf2read.c (dwarf2_attach_fields_to_type): Don't set
TYPE_FIELD_IGNORE_BITS.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/dwarf2read.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 874a078..5280cc4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2010-08-27 Tom Tromey <tromey@redhat.com> + + * dwarf2read.c (dwarf2_attach_fields_to_type): Don't set + TYPE_FIELD_IGNORE_BITS. + 2010-08-27 Doug Evans <dje@google.com> * dwarf2read.c (dwarf2_per_objfile_free): Reorganize buffers to match diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 06ee486..ebab265 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -6266,9 +6266,9 @@ dwarf2_attach_fields_to_type (struct field_info *fip, struct type *type, (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields)); B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields); - TYPE_FIELD_IGNORE_BITS (type) = - (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields)); - B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields); + /* We don't set TYPE_FIELD_IGNORE_BITS here. The DWARF reader + never sets any bits in that array, so leaving it NULL lets us + save a little memory. */ } /* If the type has baseclasses, allocate and clear a bit vector for |