Re: [PATCH] Fix debug fallout of proposed PR68162 fix

2015-11-29 Thread Jason Merrill
OK. Jason

Re: [PATCH] Fix debug fallout of proposed PR68162 fix

2015-11-26 Thread Richard Biener
On Wed, 18 Nov 2015, Richard Biener wrote: > > The following patch makes sure we still emit a DW_TAG_typedef for > the element typedef in gcc.dg/debug/dwarf2/pr47939-4.c after a change > to how the C frontend structures the variant chain of arrays. > > It makes dwarf2out _not_ re-build the varia

Re: [PATCH] Fix debug fallout of proposed PR68162 fix

2015-11-18 Thread Marek Polacek
On Wed, Nov 18, 2015 at 09:50:26AM +0100, Richard Biener wrote: > --- gcc/dwarf2out.c (revision 230428) > +++ gcc/dwarf2out.c (working copy) > @@ -20784,9 +20784,10 @@ gen_type_die_with_usage (tree type, dw_d >/* We are going to output a DIE to represent the unqualified version > of t

[PATCH] Fix debug fallout of proposed PR68162 fix

2015-11-18 Thread Richard Biener
The following patch makes sure we still emit a DW_TAG_typedef for the element typedef in gcc.dg/debug/dwarf2/pr47939-4.c after a change to how the C frontend structures the variant chain of arrays. It makes dwarf2out _not_ re-build the variant for arrays (like it does for vectors). Patch was tes