blob: d1840a9a059922b5863cb711f49c57d4742ee421 [file] [log] [blame]
/* PR tree-optimization/56125 */
/* { dg-do run } */
/* { dg-options "-O2 -ffast-math" } */
extern void abort (void);
extern double fabs (double);
__attribute__((cold)) double
foo (double x, double n)
{
double u = x / (n * n);
return u;
}
int
main ()
{
if (fabs (foo (29, 2) - 7.25) > 0.001)
abort ();
return 0;
}