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/25911] [4.2 Regression] ice in vect_recog_dot_prod_pattern



------- Comment #4 from pinskia at gcc dot gnu dot org  2006-01-23 18:42 -------
Further reduced:
double bessel_Kn_scaled_small_x(int n)
{
  int k;
  double k_term, sum1;
  for(k=1; k<=n-1; k++)
  {
    k_term *= -1/(k * (n-k));
    sum1 += k_term;
  }
  return sum1;
}


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25911


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