diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-08-04 19:11:12 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-08-04 19:11:12 +0000 |
commit | 8249c0d6ec2773f989516c79bd35530e9d62d1a5 (patch) | |
tree | 0af98e86170e5395fd695e695b954c0799e18009 /gdb | |
parent | b9d147054e7fd807eac70d67c9eaaf5ee9b99771 (diff) | |
download | fsf-binutils-gdb-8249c0d6ec2773f989516c79bd35530e9d62d1a5.zip fsf-binutils-gdb-8249c0d6ec2773f989516c79bd35530e9d62d1a5.tar.gz fsf-binutils-gdb-8249c0d6ec2773f989516c79bd35530e9d62d1a5.tar.bz2 |
From 2002-08-01 david carlton <carlton@math.stanford.edu>:
* hpread.c (hpread_read_struct_type): Deleted superfluous setting
of FIELD_BITSIZE.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/hpread.c | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index df38792..4d295f9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2002-08-04 Andrew Cagney <ac131313@redhat.com> + + From 2002-08-01 david carlton <carlton@math.stanford.edu>: + * hpread.c (hpread_read_struct_type): Deleted superfluous setting + of FIELD_BITSIZE. + 2002-08-04 Daniel Jacobowitz <drow@mvista.com> * NEWS: Cleanup and nitpick. diff --git a/gdb/hpread.c b/gdb/hpread.c index 6443eac..4cc5f18 100644 --- a/gdb/hpread.c +++ b/gdb/hpread.c @@ -4038,7 +4038,6 @@ hpread_read_struct_type (dnttpointer hp_type, union dnttentry *dn_bufp, list = new; list->field.name = VT (objfile) + fn_fieldp->dsvar.name; - FIELD_BITSIZE (list->field) = -1; /* indicates static member */ SET_FIELD_PHYSNAME (list->field, 0); /* initialize to empty */ memtype = hpread_type_lookup (fn_fieldp->dsvar.type, objfile); |