------- Comment #8 from jason at redhat dot com 2008-11-25 17:35 -------
Subject: Re: [4.2/4.3 Regression] ICE with transparent union
rguenth at gcc dot gnu dot org wrote:
> IMHO a backport is not needed for error-recovery bugs.
This is not an error-recovery bug, the patch makes us accept it.
That said, it's probably simpler to fix your code: changing
typedef union
{
int i;
} B __attribute__((transparent_union));
typedef union
{
int i;
} __attribute__((transparent_union)) B;
will work with 4.3.2. So yeah, no backport seems needed.
Jason
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36410