This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/32367] [4.3 Regression] internal compiler error: in build_polynomial_chrec, at tree-chrec.h:113
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 16 Jun 2007 20:40:56 -0000
- Subject: [Bug tree-optimization/32367] [4.3 Regression] internal compiler error: in build_polynomial_chrec, at tree-chrec.h:113
- References: <bug-32367-1649@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #5 from pinskia at gcc dot gnu dot org 2007-06-16 20:40 -------
Actually I reduced it a little too far (I had fixed the ICE in one case but was
reducing another ICE):
int BinomialCoefficientsInited = 0;
int BinomialCoefficients[17 * 35];
double Evaluate_TPat (void)
{
unsigned n, k;
if (BinomialCoefficientsInited == 0)
{
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