This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] dwarf2read.c (compute_delayed_physnames): Use TYPE_FN_FIELD_PHYSNAME.


> 2015-01-03  Doug Evans  <xdje42@gmail.com>
> 
> 	* dwarf2read.c (compute_delayed_physnames): Use TYPE_FN_FIELD_PHYSNAME.

I was going to fix the line length, which is now too long, but it
looks like you haven't pushed the change, yet. So...

> 
> diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c
> index 86c3a73..15b3c9d 100644
> --- a/gdb/dwarf2read.c
> +++ b/gdb/dwarf2read.c
> @@ -7704,7 +7704,7 @@ compute_delayed_physnames (struct dwarf2_cu *cu)
>        struct fn_fieldlist *fn_flp
>  	= &TYPE_FN_FIELDLIST (mi->type, mi->fnfield_index);
>        physname = dwarf2_physname (mi->name, mi->die, cu);
> -      fn_flp->fn_fields[mi->index].physname = physname ? physname : "";
> +      TYPE_FN_FIELD_PHYSNAME (fn_flp->fn_fields, mi->index) = physname ? physname : "";

... this line is a little too long :).

>      }
>  }
>  

-- 
Joel


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]