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 tree-optimization/32367] [4.3 Regression] internal compiler error: in build_polynomial_chrec, at tree-chrec.h:113



------- Comment #4 from pinskia at gcc dot gnu dot org  2007-06-16 20:31 -------
Here is a reduced testcase:
int BinomialCoefficients[17 * 35];
void InitializeBinomialCoefficients ()
{
  unsigned n, k;
  int *ptr = BinomialCoefficients;
  for ( n = 1; n <= 33; ++n)
    {
      for ( k = 1; k < n; ++k)
        ++ptr;
      *ptr = 1;
    }
}


-- 


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


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