------- Comment #5 from tbm at gcc dot gnu dot org 2006-08-10 20:18 ------- Further reduced:
double fabs (double __x) { } extern void exit (int __status); void nrerror (void) { exit(0); } float betacf (float x) { void nrerror (void); float d, h; d = 1.0 - x; if (fabs (d) < 1.0e-30) h = d; return h; } void betai (void) { void nrerror (void); nrerror (); } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28677