[Bug c++/41961] Internal error with -O3 and -ftree-parallelize-loops
reichelt at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Sun Nov 29 23:04:00 GMT 2009
------- Comment #3 from reichelt at gcc dot gnu dot org 2009-11-29 23:04 -------
Reduced testcase:
=================================
struct A
{
char c[17];
void foo();
};
void A::foo()
{
for (int i = 0; i < 17; ++i)
c[i] = 0;
}
=================================
The bug is fixed in GCC 4.4.0.
(Because -ftree-parallelize-loops was introcuded in GCC 4.3.0,
the crash in GCC 4.3.x is not a regression.)
--
reichelt at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |reichelt at gcc dot gnu dot
| |org
Status|UNCONFIRMED |RESOLVED
Keywords| |ice-on-valid-code
Resolution| |FIXED
Target Milestone|--- |4.4.0
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41961
More information about the Gcc-bugs
mailing list