1 2 3 4 5 6 7 8 9 10 11
/* PR middle-end/18520 */ /* { dg-do compile } */ /* { dg-options "-O2 -ffast-math" } */ extern int isnan (double __value) __attribute__ ((__const__)); int gsl_isnan (const double x) { return isnan(x); }