This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/22037] [4.1 Regression] internal compiler error: verify_ssa failed
- 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: 12 Jun 2005 16:00:08 -0000
- Subject: [Bug tree-optimization/22037] [4.1 Regression] internal compiler error: verify_ssa failed
- References: <20050612151318.22037.mathieu@malaterre.com>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-12 16:00 -------
Confirmed, reduced testcase:
extern double sqrt (double __x) throw ();
int numDerivs1;
int ComputeAStep( double& error)
{
int i, numDerivs;
numDerivs = numDerivs1;
for(i=0; i<numDerivs; i++)
;
double err=0;
for(i=0; i<numDerivs; i++)
err += 1;
error = sqrt(err);
for(i=0; i<numDerivs; i++)
;
return 0;
}
--
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Last reconfirmed|0000-00-00 00:00:00 |2005-06-12 16:00:05
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22037