This is the mail archive of the gcc-bugs@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]

[Bug target/34215] [4.2 Regression] ICE in assign_386_stack_local, at config/i386/i386.c:13481



------- Comment #2 from tbm at cyrius dot com  2007-11-24 15:26 -------
The reduced testcase only shows the problem with 4.2:


/* Testcase by Martin Michlmayr <tbm@cyrius.com> */

void calc_score_dist (int mxdlen, long double d, long double **dist)
{
  unsigned long i, scr2;
  for (i = 1; i <= mxdlen; i++)
  {
    for (scr2 = mxdlen; scr2 <= mxdlen + 10; scr2++)
    {
    }
    dist[i][scr2] *= pow(1.0 / d, i);
  }
}


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34215


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