------- Comment #3 from pinskia at gcc dot gnu dot org 2006-02-08 23:23 -------
Reduced testcase for the RETURN_DECL issue (I still have to figure out if this
is the same issue):
struct a
{
int i;
};
void h(struct a&);
void l(void);
struct a g(void)
{
struct a fl;
h(fl);
if (fl.i)
l();
fl.i+=2;
return fl;
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26179
