dwarf2read.c: Add cast

There is no enum value representing 0.  It seems like the value of the
name field is irrelevant here.

gdb/ChangeLog:

	* dwarf2read.c (partial_die_full_name): Add cast.
This commit is contained in:
Simon Marchi 2015-10-29 13:41:12 -04:00 committed by Simon Marchi
parent 7535d5edea
commit b40699581c
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2015-10-29 Simon Marchi <simon.marchi@polymtl.ca>
* dwarf2read.c (partial_die_full_name): Add cast.
2015-10-29 Pedro Alves <palves@redhat.com>
* common/vec.h (DEF_VEC_FUNC_P) [iterate]: Cast 0 to type T.

View file

@ -6854,7 +6854,7 @@ partial_die_full_name (struct partial_die_info *pdi,
struct dwarf2_cu *ref_cu = cu;
/* DW_FORM_ref_addr is using section offset. */
attr.name = 0;
attr.name = (enum dwarf_attribute) 0;
attr.form = DW_FORM_ref_addr;
attr.u.unsnd = pdi->offset.sect_off;
die = follow_die_ref (NULL, &attr, &ref_cu);