* dwarf2read.c (read_array_type): Accept DW_FORM_data8 as

a constant array bound.
This commit is contained in:
Richard Henderson 2002-03-14 22:53:35 +00:00
parent 23b95bcbaa
commit 963838355f
2 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2002-03-14 Richard Henderson <rth@redhat.com>
* dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
a constant array bound.
* MAINTAINERS: Add myself to write-after-approval.
2002-03-13 Michal Ludvig <mludvig@suse.cz>
* gdbserver/remote-util.c (remote_open): Print remote-side's

View File

@ -2538,7 +2538,8 @@ read_array_type (struct die_info *die, struct objfile *objfile,
else if (attr->form == DW_FORM_udata
|| attr->form == DW_FORM_data1
|| attr->form == DW_FORM_data2
|| attr->form == DW_FORM_data4)
|| attr->form == DW_FORM_data4
|| attr->form == DW_FORM_data8)
{
low = DW_UNSND (attr);
}
@ -2564,7 +2565,8 @@ read_array_type (struct die_info *die, struct objfile *objfile,
else if (attr->form == DW_FORM_udata
|| attr->form == DW_FORM_data1
|| attr->form == DW_FORM_data2
|| attr->form == DW_FORM_data4)
|| attr->form == DW_FORM_data4
|| attr->form == DW_FORM_data8)
{
high = DW_UNSND (attr);
}