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/22037] [4.1 Regression] internal compiler error: verify_ssa failed


------- 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


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