This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC 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: Release schedule


> 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


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