[Bug tree-optimization/34590] GCC-4.3.0-20071221 SEGV's building Bzip2 1.0.4 decompress.c with -ftree-parallelize-loops=4
pinskia at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Wed Dec 26 14:21:00 GMT 2007
------- Comment #3 from pinskia at gcc dot gnu dot org 2007-12-26 14:21 -------
Confirmed, reduced testcase:
struct DState{
unsigned char mtfa [4096];
int mtfbase[256 / 16];
} ;
int makeMaps_d ( struct DState* s, int kk )
{
int ii, jj;
for (ii = 256 / 16 - 1; ii >= 0; ii--) {
for (jj = 16 -1; jj >= 0; jj--) {
s->mtfa[kk] = 16;
kk--;
}
s->mtfbase[ii] = kk + 1;
}
}
--
pinskia at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed|0 |1
Keywords| |ice-on-valid-code
Last reconfirmed|0000-00-00 00:00:00 |2007-12-26 14:21:21
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34590
More information about the Gcc-bugs
mailing list