This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Release schedule
- From: "Eric Botcazou" <ebotcazou at libertysurf dot fr>
- To: <gcc at gcc dot gnu dot org>
- Date: Thu, 26 Sep 2002 20:24:35 +0200
- Subject: Re: Release schedule
- References: <200209252015.QAA08152@makai.watson.ibm.com>
> SECONDARY_MEMORY_NEEDED for subregs:
> http://gcc.gnu.org/ml/gcc-patches/2002-08/msg01539.html
It fixes an ICE for the following testcase:
/* { dg-do compile { target i?86-*-* } } */
/* { dg-options "-O -march=athlon" } */
void foo ()
{
struct { float x, y; } c, *cp;
static float z;
while (1)
{
c.y = cp->y + cp->y;
z = c.y + 1.0;
}
}
The testcase was extracted from PR optimization/7124 by Volker Reichelt. But
the patch is not sufficient for the submitter's testcase.
--
Eric Botcazou