aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr116409-1.c
blob: 7bf8d49c9a01cbd2d287c21fa7cc537d2bb89109 (plain)
1
2
3
4
5
6
7
/* { dg-do compile } */
/* { dg-additional-options "-frounding-math -fno-math-errno" } */
double f(int c, double a, double b) {
  if (c)
    return __builtin_sqrt(a);
  return __builtin_sqrt(b);
}